Last active
August 29, 2015 14:11
-
-
Save grabcode/cf7ad2cc0301ca9f2544 to your computer and use it in GitHub Desktop.
Timing backbone fetch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = exports ? this | |
# Overloading backbone fetch method | |
previousFetch = Backbone.Collection.prototype.fetch | |
root.Backbone.Collection.prototype.fetch = (options={})-> | |
asyncUniqId = _.uniqueId 'time_'[email protected]+'_' | |
console.time asyncUniqId | |
previousSuccess = if options? then options.success else undefined | |
options = _.extend(options, | |
success: => | |
previousSuccess.apply @, arguments if previousSuccess? | |
console.timeEnd asyncUniqId | |
) | |
previousFetch.apply @, [options] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment