diff -r 1796e0220bef -r 408da84d4dc0 client/js/full-json.js --- a/client/js/full-json.js Fri Apr 19 13:39:39 2013 +0200 +++ b/client/js/full-json.js Fri Apr 19 15:31:56 2013 +0200 @@ -14,14 +14,14 @@ var _save = function() { var _data = _proj.toJSON(); if (!_renkan.read_only) { - Rkns.$.ajax({ - type: _opts.http_method, - url: _opts.url, - contentType: "application/json", - data: JSON.stringify(_data), - success: function(data, textStatus, jqXHR) { - } - }); + Rkns.$.ajax({ + type: _opts.http_method, + url: _opts.url, + contentType: "application/json", + data: JSON.stringify(_data), + success: function(data, textStatus, jqXHR) { + } + }); } }