mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
fixed unterminated JS statements
This commit is contained in:
parent
42d121d7ba
commit
d306751695
5 changed files with 23 additions and 23 deletions
8
lib/form/yui/dateselector/dateselector.js
vendored
8
lib/form/yui/dateselector/dateselector.js
vendored
|
@ -71,7 +71,7 @@ YUI.add('moodle-form-dateselector', function(Y) {
|
|||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Calendar class
|
||||
|
@ -80,7 +80,7 @@ YUI.add('moodle-form-dateselector', function(Y) {
|
|||
*/
|
||||
var CALENDAR = function(config) {
|
||||
CALENDAR.superclass.constructor.apply(this, arguments);
|
||||
}
|
||||
};
|
||||
CALENDAR.prototype = {
|
||||
panel : null,
|
||||
yearselect : null,
|
||||
|
@ -186,7 +186,7 @@ YUI.add('moodle-form-dateselector', function(Y) {
|
|||
M.form.dateselector.currentowner = null;
|
||||
M.form.dateselector.calendar.selectEvent.unsubscribe(this.set_selects_from_date, this);
|
||||
}
|
||||
}
|
||||
};
|
||||
Y.extend(CALENDAR, Y.Base, CALENDAR.prototype, {
|
||||
NAME : 'Date Selector',
|
||||
ATTRS : {
|
||||
|
@ -284,5 +284,5 @@ YUI.add('moodle-form-dateselector', function(Y) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}, '@VERSION@', {requires:['base','node','overlay', 'yui2-calendar', 'moodle-form-dateselector-skin']});
|
Loading…
Add table
Add a link
Reference in a new issue