diff -r a60a450b8f3b -r 603ffa4c6fa5 client/js/full-json.js --- a/client/js/full-json.js Tue Apr 23 22:30:09 2013 +0200 +++ b/client/js/full-json.js Tue Apr 23 22:53:01 2013 +0200 @@ -10,7 +10,7 @@ _proj.set(_data, {validate: true}); _renkan.renderer.autoScale(); }); - } + }; var _save = function() { var _data = _proj.toJSON(); if (!_renkan.read_only) { @@ -24,10 +24,10 @@ }); } - } + }; var _thrSave = Rkns._.throttle( function() { - setTimeout(_save, 100) + setTimeout(_save, 100); }, 1000); _proj.on("add:nodes add:edges add:users", function(_model) { _model.on("change remove", function(_model) { @@ -40,4 +40,4 @@ }); _load(); -} +};