Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #30724 from RomainLoisel/bug_1170456
Browse files Browse the repository at this point in the history
Bug 1170456 - [Calendar] fix remain jsdoc error r=millermedeiros
  • Loading branch information
millermedeiros committed Jul 17, 2015
2 parents 1699844 + bd74b65 commit 6dfeea5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions apps/calendar/js/backend/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ Db.prototype = {
/**
* Update a collection of events and the busytimes that depend on them.
*
* @param {Array.<number>>} eventIds An array of event ids for the events.
* @param {Array.<number>} eventIds An array of event ids for the events.
* @param {number} calendarId A numerical id to set as calendarId.
* @param {IDBTransaction} trans The active idb transaction during db
* upgrade.
Expand Down Expand Up @@ -354,7 +354,7 @@ Db.prototype = {
/**
* Delete a collection of events and the busytimes that depend on them.
*
* @param {Array.<number>>} eventIds An array of event ids for the events.
* @param {Array.<number>} eventIds An array of event ids for the events.
* @param {IDBTransaction} trans The active idb transaction during db
* upgrade.
* @private
Expand Down
4 changes: 2 additions & 2 deletions apps/calendar/js/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ Db.prototype = {
/**
* Update a collection of events and the busytimes that depend on them.
*
* @param {Array.<number>>} eventIds An array of event ids for the events.
* @param {Array.<number>} eventIds An array of event ids for the events.
* @param {number} calendarId A numerical id to set as calendarId.
* @param {IDBTransaction} trans The active idb transaction during db
* upgrade.
Expand Down Expand Up @@ -354,7 +354,7 @@ Db.prototype = {
/**
* Delete a collection of events and the busytimes that depend on them.
*
* @param {Array.<number>>} eventIds An array of event ids for the events.
* @param {Array.<number>} eventIds An array of event ids for the events.
* @param {IDBTransaction} trans The active idb transaction during db
* upgrade.
* @private
Expand Down
2 changes: 1 addition & 1 deletion apps/calendar/js/service/caldav.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ Service.prototype = {
* ...
* ]
*
* @param {Array[icalComponent]} components list of icalComponents.
* @param {Array.<icalComponent>} components list of icalComponents.
* @param {Calendar.Responder} stream to emit events.
* @param {Object} options list of options.
* @param {Object} options.maxDate maximum date to expand to.
Expand Down
5 changes: 4 additions & 1 deletion apps/calendar/js/views/month.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ Month.prototype = {
/** @type {SingleMonth} */
currentFrame: null,

/** @type {DOMElement} used to detect if dbltap happened on same date */
/**
* used to detect if dbltap happened on same date
* @type {DOMElement}
*/
_lastTarget: null,

/**
Expand Down
6 changes: 1 addition & 5 deletions apps/calendar/jsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
},
"source": {
"include": ["apps/calendar/README.md", "apps/calendar/js"],
"exclude": ["apps/calendar/js/ext",
"apps/calendar/js/backend/db.js",
"apps/calendar/js/db.js",
"apps/calendar/js/service/caldav.js",
"apps/calendar/js/views/month.js"]
"exclude": ["apps/calendar/js/ext"]
},
"plugins": [
"plugins/markdown",
Expand Down

0 comments on commit 6dfeea5

Please sign in to comment.