In my application I override Backbone.sync as follows:
Backbone.sync = function(method, model, options){
//Some custom code
//THIS FAILS.
Backbone.prototype.sync.call(this, method, model, options);
}}
My question is, how do I call the original sync method? Do I need to use this.sync instead?