I was updating my backbone version from 0.9.2 to 1.0 yet I've encountered a problem.
The model is not updating properly. It has delays in it. previously my code below works perfectly:
this.model({ attrib: true},{silent:true});
But after updating I removed the {silent:true}
and everything works perfectly. The model updates properly.
I've read something like this on Backbonejs.org
Passing {silent:true} on change will no longer delay individual "change:attr" events, instead they are silenced entirely.
I dont get entirely what the statement means.