X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/1aba836313d1513bbe0ca947e01176806c900233..c0e11a8f6d0d9a4c030aa90fe91f0fc49cd05e0e:/modules/data.js?ds=sidebyside diff --git a/modules/data.js b/modules/data.js index e4b564e..5f3fd39 100644 --- a/modules/data.js +++ b/modules/data.js @@ -3,6 +3,23 @@ rng.modules.data = function(sandbox) { var doc = sandbox.getBootstrappedData().document; var document_id = sandbox.getBootstrappedData().document_id; + + if(doc === '') { + doc = '\n\ + \n\ + \n\ + \n\ +
\n\ + \n\ +
'; + } + + function readCookie(name) { var nameEQ = escape(name) + "="; var ca = document.cookie.split(';'); @@ -37,7 +54,7 @@ rng.modules.data = function(sandbox) { saveDocument: function() { $.ajax({ method: 'post', - url: '/editor/' + document_id, + url: '/' + gettext('editor') + '/' + document_id, data: JSON.stringify({document:doc}) }); }