Merge branch 'MDL-35954_master' of git://github.com/markn86/moodle

This commit is contained in:
Sam Hemelryk 2012-12-10 14:08:06 +13:00
commit 9d8abffc87

View File

@ -426,6 +426,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) {
@ -433,6 +434,7 @@ M.util.init_select_autosubmit = function(Y, formid, selectid, nothing) {
if(e.keyCode == 13) {
form.submit();
}
paramobject.lastindex = select.get('selectedIndex');
}
}