Alexander Lebedev

Results 5 comments of Alexander Lebedev

Still happens with backbone 1.1.0 and backbone-nested 2.0.0

Here's naive solution in coffeescript that I'm using as workaround ``` changedAttributes: -> changes = super getPreviousValue = (attrPath) => value = _.clone(this._previousAttributes) for key in attrPath.split('.') value = value?[key]...

I do this with following code # dualSync Promise adapter Backbone.dualSync = Backbone.sync Backbone.sync = (method, model, options) -> result = Backbone.dualSync.apply(this, arguments) if result.then result else # localSync never...

Could you update pull request to make it merge cleanly? Also gem install with "*" is more future-proof, I'd prefer to keep it. Thanks

jQuery.Mobile widgets usually require 'refresh' call to update UI when underlying element is changed programmatically. To address this, call button('refresh'), selectmenu('refresh'), etc when model is updated. IMO, custom converter is...