aboutsummaryrefslogtreecommitdiffstats
path: root/src/callbacks.js
Commit message (Collapse)AuthorAgeFilesLines
* Callbacks: bring back size reductionOleg Gaidarenko2015-11-131-87/+71
| | | | Ref 4cbf02df84dbcaa44b75a64ed832f7dbff2231dd
* Revert "Callbacks: Don't abort execution on .lock()"Oleg Gaidarenko2015-11-131-1/+1
| | | | This reverts commit 32bf9178cace8c52a31c468a28adde9a4fdc4671.
* Revert "Callbacks: Reduce size"Oleg Gaidarenko2015-11-131-71/+87
| | | | This reverts commit 4cbf02df84dbcaa44b75a64ed832f7dbff2231dd.
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-7/+15
| | | | Fixes gh-2056
* Callbacks: Reduce sizeRichard Gibson2015-01-101-82/+74
| | | | (cherry picked from commit 18baae2efb36a6c759c0dddac7d25da9c554dff7)
* Callbacks: Don't abort execution on .lock()Richard Gibson2015-01-101-1/+1
| | | | | | | Fixes gh-1990 Closes gh-1991 (cherry picked from commit fc7477f4927100f23f83c22b5142a42d1eac8502)
* Callbacks: No object starts out lockedRichard Gibson2015-01-101-11/+34
| | | | | | Fixes gh-1989 (cherry picked from commit f5a8c649b54e8b7fde6253bd56972347f9bbe012)
* Callbacks: Disabling a callback should prevent firingDave Methvin2014-12-071-2/+4
| | | | | | | Thanks to @TheDistantSea for the report! Fixes gh-1790 Closes gh-1643
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-171-1/+3
|
* No ticket: fix code style inconsistencies. Closes gh-1361Oleg2013-09-131-1/+1
|
* Always return jQuery in modules that can be included separatelyTimmy Willison2013-09-081-0/+1
|
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-1/+8
|
* Moved too-early assignment inside the if stmt where the var is actually ↵terrycojones2013-06-191-2/+2
| | | | used. Close gh-1292.
* Properly resets firingLength when emptying the list. Fixes #13517jaubourg2013-02-271-0/+1
|
* Fix #13150, .has() w/o args checks for any callbacks. Close gh-1111.adamcoulombe2013-01-271-2/+3
|
* Fix #12959: Optimize library-wide patternsRichard Gibson2012-11-271-1/+1
|
* Do not iterate over functions. Fixes #12665. Unit tests added. Thanks to ↵jaubourg2012-10-061-2/+4
| | | | @kselden for finding the bug.
* Makes sure "adding" a string to a Callbacks object doesn't cause a stack ↵jaubourg2012-08-161-2/+3
| | | | overflow, just ignore the value like 1.7.x righfully did. Fixes #12233. Unit tests added.
* Follow the style guide, lose 72 bytes! Closes gh-840.Mike Sherov2012-07-091-5/+5
|
* Interim take on cross-module variables, closes gh-817.Richard Gibson2012-06-151-1/+1
|
* Strips IIFEs from modules; Always require built jQuery for tests.Rick Waldron2012-06-041-4/+0
|
* Simplifies the way the internal memory storage is handled.jaubourg2012-04-281-9/+8
|
* Callbacks.add now accepts array-like objects (like Arguments). Now uses the ↵jaubourg2012-04-251-6/+6
| | | | slice method of the args array in fireWith rather than a quite slow jQuery.merge.
* Use real declaration since that helps gzip: thanks @gibson042.jaubourg2012-04-251-3/+5
|
* Regression: makes sure that all instances of a callback are removed. Unit ↵jaubourg2012-04-251-2/+2
| | | | test added.
* How about we save 62 bytes? Also ensure that the arguments array given to ↵jaubourg2012-04-251-78/+42
| | | | fireWith is copied internally.
* Since we can pass an object to jQuery.Callbacks now, let's name it options ↵jaubourg2012-04-251-21/+23
| | | | to be consistent with the rest of the code.
* Uses a copy of the flags when they are given as an object rather than the ↵jaubourg2012-04-251-1/+1
| | | | object itself. That way, we're sure flags are immutable for the entire lifetime of the Callbacks instance.
* Allows traditional options object for $.Callbacks flags. Fixes #11011. Unit ↵jaubourg2012-04-021-2/+2
| | | | tests added.
* Fixes #10952 by introducing a real fired flag in the Callbacks closure.jaubourg2012-01-311-1/+4
| | | | | | | jQuery Size - compared to last make 250235 (+69) jquery.js 94225 (+7) jquery.min.js 33445 (+3) jquery.min.js.gz
* Trimmed down $.Callbacks and $.Deferred.jaubourg2011-09-211-40/+9
|
* $.Callbacks, $.Topic and notify/progress on $.Deferred.jaubourg2011-09-191-0/+257