Add missing comma in sample adapter config.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -48,7 +48,7 @@ Rivets.js is model interface-agnostic, meaning it can work with any event-driven | ... | @@ -48,7 +48,7 @@ Rivets.js is model interface-agnostic, meaning it can work with any event-driven |
48 | }, | 48 | }, |
49 | unsubscribe: function(obj, keypath, callback) { | 49 | unsubscribe: function(obj, keypath, callback) { |
50 | obj.off('change:' + keypath, callback.wrapped); | 50 | obj.off('change:' + keypath, callback.wrapped); |
51 | } | 51 | }, |
52 | read: function(obj, keypath) { | 52 | read: function(obj, keypath) { |
53 | return obj.get(keypath); | 53 | return obj.get(keypath); |
54 | }, | 54 | }, | ... | ... |
-
Please register or sign in to post a comment