Skip to content

Commit

Permalink
Merge branch 'MDL-42393-27' of git://github.com/FMCorz/moodle into MO…
Browse files Browse the repository at this point in the history
…ODLE_27_STABLE
  • Loading branch information
danpoltawski committed Jul 7, 2014
2 parents b4ac565 + 31c0efe commit 9945bce
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
Expand Up @@ -62,6 +62,7 @@ Y.extend(EVENT, Y.Base, {
}
},
startShow : function() {
this.cancelHide();
if (this.get(SHOWTIMEOUT) !== null) {
this.cancelShow();
}
Expand All @@ -82,6 +83,7 @@ Y.extend(EVENT, Y.Base, {
this.fire('showevent');
},
startHide : function() {
this.cancelShow();
if (this.get(HIDETIMEOUT) !== null) {
this.cancelHide();
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -62,6 +62,7 @@ Y.extend(EVENT, Y.Base, {
}
},
startShow : function() {
this.cancelHide();
if (this.get(SHOWTIMEOUT) !== null) {
this.cancelShow();
}
Expand All @@ -82,6 +83,7 @@ Y.extend(EVENT, Y.Base, {
this.fire('showevent');
},
startHide : function() {
this.cancelShow();
if (this.get(HIDETIMEOUT) !== null) {
this.cancelHide();
}
Expand Down
2 changes: 2 additions & 0 deletions calendar/yui/src/eventmanager/js/eventmanager.js
Expand Up @@ -60,6 +60,7 @@ Y.extend(EVENT, Y.Base, {
}
},
startShow : function() {
this.cancelHide();
if (this.get(SHOWTIMEOUT) !== null) {
this.cancelShow();
}
Expand All @@ -80,6 +81,7 @@ Y.extend(EVENT, Y.Base, {
this.fire('showevent');
},
startHide : function() {
this.cancelShow();
if (this.get(HIDETIMEOUT) !== null) {
this.cancelHide();
}
Expand Down

0 comments on commit 9945bce

Please sign in to comment.