X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/b97ddb66b6ffc6b7897ae6eb8b82409d66c89827..f3b3b737aefbb812828fdec07e188ff8093ccf81:/forum/skins/default/templates/question_edit.html?ds=inline diff --git a/forum/skins/default/templates/question_edit.html b/forum/skins/default/templates/question_edit.html index 9207209..402a0eb 100644 --- a/forum/skins/default/templates/question_edit.html +++ b/forum/skins/default/templates/question_edit.html @@ -54,7 +54,32 @@ $("#select_revision").click(); }); + init = $("textarea#editor")[0].value; + + title = $("input#id_title")[0].value; + body = $("textarea#editor")[0].value; + tag = $("input#id_tags")[0].value; }); + + function submitClicked(e) { + if(!(browserTester('chrome') || browserTester('safari'))) { + $("input.submit")[0].disabled=true; + $("input.submit")[1].disabled=true; + } + window.removeEventListener('beforeunload', beforeUnload, true); + } + + function beforeUnload(e) { + if($("input#id_title")[0].value != title || $("textarea#editor")[0].value != body || $("input#id_tags")[0].value != tag) { + return yourWorkWillBeLost(e); + } + } + window.addEventListener('beforeunload', beforeUnload, true); + + var init = ""; + var title = ""; + var body = ""; + var tag = ""; {% endblock %} @@ -112,8 +137,8 @@ {{ form.summary.help_text }}
- - + +