Skip to content

Commit

Permalink
Merge branch '2.0-preview'
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed May 10, 2017
2 parents 35c026e + 372c7cb commit eb9c5af
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/utils/async.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
/**
* Enqueues a function called at `requestAnimationFrame` timing.
*
* @memberof Polymer.Async.timeOut
* @memberof Polymer.Async.animationFrame
* @param {Function} fn Callback to run
* @return {number} Handle used for canceling task
*/
Expand All @@ -130,7 +130,7 @@
/**
* Enqueues a function called at `requestIdleCallback` timing.
*
* @memberof Polymer.Async.timeOut
* @memberof Polymer.Async.idlePeriod
* @param {function(IdleDeadline)} fn Callback to run
* @return {number} Handle used for canceling task
*/
Expand All @@ -142,7 +142,7 @@
/**
* Cancels a previously enqueued `idlePeriod` callback.
*
* @memberof Polymer.Async.timeOut
* @memberof Polymer.Async.idlePeriod
* @param {number} handle Handle returned from `run` of callback to cancel
*/
cancel(handle) {
Expand Down Expand Up @@ -171,7 +171,7 @@
/**
* Enqueues a function called at microtask timing.
*
* @memberof Polymer.Async.timeOut
* @memberof Polymer.Async.microTask
* @param {Function} callback Callback to run
* @return {*} Handle used for canceling task
*/
Expand All @@ -184,6 +184,7 @@
/**
* Cancels a previously enqueued `microTask` callback.
*
* @memberof Polymer.Async.microTask
* @param {number} handle Handle returned from `run` of callback to cancel
*/
cancel(handle) {
Expand Down

0 comments on commit eb9c5af

Please sign in to comment.