This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//from https://github.com/tolk/tolk/ | |
$(function () { | |
$("#submit").bind("click", function () { | |
window.onbeforeunload = null; | |
}); | |
// avoid lose data | |
$(".translations").bind("keydown", function () { | |
window.onbeforeunload = confirm; | |
}); | |
$(".translations").bind("change", function () { | |
window.onbeforeunload = confirm; | |
}); | |
function confirm() { | |
return "You are leaving this page with non-saved data. Are you sure you want to continue?"; | |
} | |
}); |
No comments:
Post a Comment