diff --git a/backbone.js b/backbone.js index 83466006..102f1097 100644 --- a/backbone.js +++ b/backbone.js @@ -1475,7 +1475,9 @@ }; // Make the request, allowing the user to override any Ajax options. - return Backbone.ajax(_.extend(params, options)); + var xhr = Backbone.ajax(_.extend(params, options)); + model.trigger('request', model, xhr, options); + return xhr; }; // Set the default implementation of `Backbone.ajax` to proxy through to `$`.