Fix typos and rebuild docs & builds.

This commit is contained in:
John-David Dalton
2013-11-05 21:53:28 -08:00
parent 94ed21d1cf
commit 7bb86c4e2a
8 changed files with 100 additions and 81 deletions

View File

@@ -5743,14 +5743,13 @@
maxTimeoutId = setTimeout(maxDelayed, remaining);
}
}
if (isCalled & timeoutId) {
if (isCalled && timeoutId) {
timeoutId = clearTimeout(timeoutId);
}
else if (!timeoutId && wait !== maxWait) {
timeoutId = setTimeout(delayed, wait);
}
if (leadingCall) {
isCalled = true;
result = func.apply(thisArg, args);
}
return result;