Created
September 19, 2014 11:03
-
-
Save mkf-simpson/5d43cc025e1ae45cb3bc to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class BaseCollection extends Backbone.Collection | |
parse: (response, options) -> | |
if options.xhr.status is 304 | |
return @models | |
response |
This file contains hidden or 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
class BaseModel extends Backbone.Model | |
parse: (response, options) -> | |
if options.xhr.status is 304 | |
return @_attributes | |
response |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment