User:Masao/monobook.js
From Wikipedia, the free encyclopedia
If a message on your talk page led you here, please be wary of who left it. Code that you insert on this page could contain malicious content capable of compromising your account. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. If this is a .js page, the code will be executed when previewing the page.
Note: After saving, you have to bypass your browser's cache to see the changes. In Internet Explorer and Firefox, hold down the Ctrl key and click the Refresh or Reload button. Opera users have to clear their caches through Tools→Preferences, see the instructions for Opera. Konqueror and Safari users can just click the Reload button.
// This script is under public domain, and comes with ABSOLUTELY NO WARRANTY. // You can use/modify/redistribute without any permission. var submitchecker_enterpressed = false; function install_submitchecker() { var f = document.getElementById("editform"); if(f) { var s = document.getElementById("wpSummary"); if(s.addEventListener) s.addEventListener("keydown", submitchecker_key, false); else if(s.attachEvent) s.attachEvent("onkeydown", submitchecker_key); if(f.addEventListener) f.addEventListener("submit", submitchecker, false); else if(f.attachEvent) f.attachEvent("onsubmit", submitchecker); } } function submitchecker(e) { if(submitchecker_enterpressed) { submitchecker_enterpressed = false; if(!confirm("Are you sure you want to submit your changes?")) { if(e.preventDefault) e.preventDefault(); else if(window.event) event.returnValue = false; return false; } } return true; } function submitchecker_key(e) { if(window.event) e = event; if(e && e.keyCode == 13) submitchecker_enterpressed = true; return true; } addOnloadHook(install_submitchecker);

