Skip to content

Commit 05ae8f3

Browse files
committed
Makes sure repeatable lists with memory are properly locked.
1 parent ebb39c2 commit 05ae8f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/callbacks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jQuery.Callbacks = function( flags, filter ) {
191191
},
192192
// Call all callbacks with the given context and arguments
193193
fireWith: function( context, args ) {
194-
if ( list ) {
194+
if ( stack ) {
195195
if ( firing ) {
196196
if ( !flags.once ) {
197197
stack.push( [ context, args ] );

0 commit comments

Comments
 (0)