Skip to content

Instantly share code, notes, and snippets.

@jwietelmann
Created September 5, 2012 14:49
Show Gist options
  • Save jwietelmann/3637747 to your computer and use it in GitHub Desktop.
Save jwietelmann/3637747 to your computer and use it in GitHub Desktop.
Aborting Backbone.sync XHR
class My.Model extends Backbone.Model
sync: (method, model, options) ->
if xhr = this["_#{method}Xhr"]
xhr.abort()
this["_#{method}Xhr"] = Backbone.sync method, model, options
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment