MediaWiki:Common.js: Difference between revisions

Content deleted Content added
change deprecated bind() to on()
use jquery for other amount symbol blocking
Line 297:
// Block typing symbols in input field, otherwise Safari allows them and then chokes
// https://phabricator.wikimedia.org/T118741
document.getElementById$('#input_amount_other_box').onkeypress =on('keypress', function(e) {
var chr = String.fromCharCode(e.which);
if ("0123456789., ".indexOf(chr) === -1) {
return false;
}
});
 
// Disable submitting form with Enter key