diff --git a/index.html b/index.html
index b6ba8944..1c7a2339 100644
--- a/index.html
+++ b/index.html
@@ -828,7 +828,7 @@ view.stopListening(model);
"error" (model, xhr, options) — when a model's save call fails on the server.
"invalid" (model, error, options) — when a model's validation fails on the client.
"route:[name]" (params) — Fired by the router when a specific route is matched.
- "route" (router, route, params) — Fired by history when any route has been matched.
+ "route" (router, route, params) — Fired by history (or router) when any route has been matched.
"all" — this special event fires for any triggered event, passing the event name as the first argument.
@@ -3815,25 +3815,35 @@ ActiveRecord::Base.include_root_in_json = false
— Not yet released — Diff
+ -
+ A "route" event is triggered on the router in addition
+ to being fired on Backbone.history.
+
-
Model validation is now only enforced by default in
Model#save and no longer enforced by default upon
- construction or in Model#set, unless the
- {validate:true} option is passed.
+ construction or in Model#set, unless the {validate:true}
+ option is passed.
-
View#make has been removed. You'll need to use $ directly to
construct DOM elements now.
-
- Passing {silent:true} on change will no longer delay individual "change:attr" events,
- instead they are silenced entirely.
+ Passing {silent:true} on change will no longer delay individual
+ "change:attr" events, instead they are silenced entirely.
-
- The Model#change method has been removed, as delayed attribute changes as no longer available.
+ The Model#change method has been removed, as delayed attribute
+ changes as no longer available.
-
- Bug fix on change where attribute comparison uses !== instead of _.isEqual.
+ Bug fix on change where attribute comparison uses !==
+ instead of _.isEqual.
+
+ -
+ Bug fix where an empty response from the server on save would not call
+ the success function.