mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Correct return type in jsdoc block.
This commit is contained in:
parent
dde3202b66
commit
075e67e0e3
1 changed files with 2 additions and 2 deletions
|
@ -176,7 +176,7 @@ App.Components.WorkingPlanExceptionsModal = (function () {
|
||||||
/**
|
/**
|
||||||
* Open the modal and start adding a new working plan exception.
|
* Open the modal and start adding a new working plan exception.
|
||||||
*
|
*
|
||||||
* @returns {jQuery.Deferred}
|
* @returns {*|jQuery.Deferred}
|
||||||
*/
|
*/
|
||||||
function add() {
|
function add() {
|
||||||
deferred = $.Deferred();
|
deferred = $.Deferred();
|
||||||
|
@ -196,7 +196,7 @@ App.Components.WorkingPlanExceptionsModal = (function () {
|
||||||
* @param {String} date
|
* @param {String} date
|
||||||
* @param {Object} workingPlanException
|
* @param {Object} workingPlanException
|
||||||
*
|
*
|
||||||
* @return {jQuery.Deferred}
|
* @return {*|jQuery.Deferred}
|
||||||
*/
|
*/
|
||||||
function edit(date, workingPlanException) {
|
function edit(date, workingPlanException) {
|
||||||
deferred = $.Deferred();
|
deferred = $.Deferred();
|
||||||
|
|
Loading…
Reference in a new issue