MDL-30889 calendar: Adding focus and blur events to calendar renderer

This commit is contained in:
Ankit Agarwal
2012-09-21 14:34:51 +08:00
parent c366bea3cf
commit 7cdb725081
+2
View File
@@ -24,6 +24,8 @@ YUI.add('moodle-calendar-eventmanager', function(Y) {
this.publish('hideevent');
td.on('mouseenter', this.startShow, this);
td.on('mouseleave', this.startHide, this);
td.on('focus', this.startShow, this);
td.on('blur', this.startHide, this);
return true;
},
initPanel : function() {