From 261059356c135de75526b15fe52e25823dddf53a Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 17 Dec 2010 18:02:45 -0500 Subject: [PATCH] Making the collection-proxies-model-events a bit more clear --- index.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index c8b1d224..eb68b91b 100644 --- a/index.html +++ b/index.html @@ -940,8 +940,11 @@ bill.set({name : "Bill Jones"});

- Collections may also listen for changes to specific attributes in their - models, for example: Documents.bind("change:selected", ...) + Any event that is triggered on a model in a collection will also be + triggered on the collection directly, for convenience. + This allows you to listen for changes to specific attributes in any + model in a collection, for example: + Documents.bind("change:selected", ...)