MDL-33448 enrol_manual: Reduced JS get_string calls for the yui widget

This commit is contained in:
Sam Hemelryk
2012-12-12 09:37:36 +08:00
committed by Dan Poltawski
parent dc5c56e90c
commit 7a4b7c5e18
+2 -1
View File
@@ -207,9 +207,10 @@ YUI.add('moodle-enrol_manual-quickenrolment', function(Y) {
var select = this.get(UEP.BASE).one('.'+CSS.ENROLMENTOPTION+'.'+CSS.DURATION+' select');
var defaultvalue = this.get(UEP.DEFAULTDURATION);
var index = 0, count = 0;
var durationdays = M.util.get_string('durationdays', 'enrol', '{a}');
for (var i = 1; i <= 365; i++) {
count++;
var option = create('<option value="'+i+'">'+M.util.get_string('durationdays', 'enrol', i)+'</option>');
var option = create('<option value="'+i+'">'+durationdays.replace('{a}', i)+'</option>');
if (i == defaultvalue) {
index = count;
}