Update vendor/underscore and continue to tweak _.throttle unit tests to avoid false fails.

Former-commit-id: b5ba7b53e3bbebb3fa42da7e197f746515c8efb0
This commit is contained in:
John-David Dalton
2012-12-24 02:19:42 -06:00
parent 408a5c168f
commit ef7cb26b01
4 changed files with 61 additions and 81 deletions

View File

@@ -1833,7 +1833,7 @@
asyncTest('should trigger trailing call when invoked repeatedly', function() {
var counter = 0,
limit = 80,
limit = 48,
throttled = _.throttle(function() { counter++; }, 32),
start = new Date;