-
Sub-task
-
Resolution: Fixed
-
Critical
-
2.4, 2.5
-
MOODLE_24_STABLE, MOODLE_25_STABLE
-
MOODLE_24_STABLE
-
wip-
MDL-36341-m24 -
This is a regression caused by MDL-16660, commit 4c349ad7.
- Create some calendar events
- Go to a page where the calendar block is displayed
- Mouse over some events
Expected
- A popup is displayed with events info
Actual
- Nothing happens
Reverting this should work:
// calendar/yui/eventmanager/eventmanager.js
|
- var n = Y.one(node);
|
- if (!n) {
|
- Y.fail(ENAME+': invalid event node set');
|
- }
|
+ var n = Y.one('#'+node);
|