X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/6b8177999606256e617a94866725d333e30f071a..acc39fd2f0eaf516dbb534232ed5f631c269886b:/edit/page.js diff --git a/edit/page.js b/edit/page.js index e2475a7..45f0104 100644 --- a/edit/page.js +++ b/edit/page.js @@ -22,10 +22,19 @@ CKEDITOR.plugins.add('inlinesave', { ajaxpost.onreadystatechange = function () { if (ajaxpost.readyState != 4) return; // not done yet - if (ajaxpost.status != 200) - alert('Foutcode '+ajaxpost.status+' bij opslaan: '+ajaxpost.responseText); - else + if (ajaxpost.status == 200) { editor.resetDirty(); + new CKEDITOR.plugins.notification(editor, { + message: 'Pagina is succesvol opgeslagen', + type: 'success', + }).show(); + } + else { + new CKEDITOR.plugins.notification(editor, { + message: 'Foutcode '+ajaxpost.status+' bij opslaan: '+ajaxpost.responseText, + type: 'warning', + }).show(); + } }; ajaxpost.send(data); },