MDL-35954 javascript: prevent JS from being triggered on select box by clicking on already selected option

This commit is contained in:
Mark Nelson
2012-11-21 16:54:58 +08:00
parent 2d7c5eeeea
commit c2aad61661

View File

@@ -414,6 +414,7 @@ M.util.init_select_autosubmit = function(Y, formid, selectid, nothing) {
if (e.button == 1) {
buttonflag = 1;
}
paramobject.lastindex = select.get('selectedIndex');
};
var changedown = function(e, paramobject) {
@@ -421,6 +422,7 @@ M.util.init_select_autosubmit = function(Y, formid, selectid, nothing) {
if(e.keyCode == 13) {
form.submit();
}
paramobject.lastindex = select.get('selectedIndex');
}
}