This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rivets.configure({ | |
adapter: { | |
subscribe: function (obj, keypath, callback) { | |
var parts = [keypath]; | |
var index = keypath.indexOf('.'); | |
if (index > -1) parts = keypath.split('.'); | |
this.subscribe_nested(parts, obj, callback); | |
}, | |
subscribe_nested: function rivets_backbone_adapter_subscribe_nested(parts, obj, callback) { |