yar1
yar1

Reputation: 1351

Does backbone collection update method (bb 0.9.9) fire a reset event

Or does it fire another unique event? Any input on how else could I have figured this out on my own (other then searching stackoverflow and reading bb documentation) is welcome. 10x.

Upvotes: 0

Views: 370

Answers (1)

jevakallio
jevakallio

Reputation: 35950

Collection.update doesn't seem to fire any special events. add and remove events are fired for added and removed models, respectively.

The best way to find out how Backbone works is to read the annotated backbone source code.

Upvotes: 1

Related Questions