Add doc reference to David Corbacho's post for _.debounce and _.throttle. [ci skip]

This commit is contained in:
John-David Dalton
2014-07-20 13:26:31 -07:00
parent b8628b9772
commit 7d221f3be9

View File

@@ -5874,6 +5874,9 @@
* the trailing edge of the timeout only if the the debounced function is
* invoked more than once during the `wait` timeout.
*
* See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation)
* for details over the differences between `_.debounce` and `_.throttle`.
*
* @static
* @memberOf _
* @category Function
@@ -6255,6 +6258,9 @@
* the trailing edge of the timeout only if the the throttled function is
* invoked more than once during the `wait` timeout.
*
* See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation)
* for details over the differences between `_.throttle` and `_.debounce`.
*
* @static
* @memberOf _
* @category Function