Merge branch 'MDL-37397-m' of git://github.com/andrewnicols/moodle

This commit is contained in:
Sam Hemelryk 2013-01-14 11:04:52 +13:00
commit d9a3d932db

View File

@ -40,9 +40,17 @@ YUI.add('moodle-core-formautosubmit',
}
// Assign this select items 'nothing' value and lastindex (current value)
var thisselect = Y.one('select#' + this.get('selectid'));
thisselect.setData('nothing', this.get('nothing'));
thisselect.setData('startindex', thisselect.get('selectedIndex'));
if (this.get('selectid')) {
var thisselect = Y.one('select#' + this.get('selectid'));
if (thisselect) {
if (this.get('nothing')) {
thisselect.setData('nothing', this.get('nothing'));
}
thisselect.setData('startindex', thisselect.get('selectedIndex'));
} else {
Y.log("Warning: A single_select element was renderered, but the output is not displayed on the page.");
}
}
},
/**