diff --git a/index.html b/index.html index aa5391fb6..9240cdf83 100644 --- a/index.html +++ b/index.html @@ -356,7 +356,7 @@
  • fetch
  • save
  • destroy
  • -
  • Underscore Methods (8)
  • +
  • Underscore Methods (9)
  • validate
  • validationError
  • isValid
  • @@ -1470,9 +1470,9 @@

    Backbone.Model

    - Underscore Methods (8) + Underscore Methods (9)
    - Backbone proxies to Underscore.js to provide 8 object functions + Backbone proxies to Underscore.js to provide 9 object functions on Backbone.Model. They aren't all documented here, but you can take a look at the Underscore documentation for the full details…

    @@ -1484,6 +1484,7 @@

    Backbone.Model

  • invert
  • pick
  • omit
  • +
  • matches
  • chain
  • isEmpty
  • @@ -1928,7 +1929,7 @@

    Backbone.Collection

    them. Each model can be a Model instance, an id string or a JS object, any value acceptable as the id argument of collection.get. - Fires a "remove" event for each model, and a single + Fires a "remove" event for each model, and a single "update" event afterwards. The model's index before removal is available to listeners as options.index. @@ -4225,8 +4226,8 @@

    Change Log

    Backbone will automatically try to load jQuery for you.
  • - Added an "update" event that triggers after any amount of - models are added or removed from a collection. Handy to re-render lists + Added an "update" event that triggers after any amount of + models are added or removed from a collection. Handy to re-render lists of things without debouncing.