🌐 AI搜索 & 代理 主页
Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Deferred: specify array-splice length argument required in ES5
  • Loading branch information
jbedard committed Jul 21, 2016
commit a15233f2cfdb1c7e583cced4b5d47f1d57bd4486
2 changes: 1 addition & 1 deletion src/deferred.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ jQuery.extend( {

function deferredTick() {
processQueueTimeout = undefined;
jQuery.each( processQueue.splice( 0 ), function( _, process ) {
jQuery.each( processQueue.splice( 0, processQueue.length ), function( _, process ) {
process();
} );
}
Expand Down