Skip to content

Commit

Permalink
Grid, Tab: fixed window.event
Browse files Browse the repository at this point in the history
  • Loading branch information
s-shinoda committed Apr 26, 2016
1 parent f275d75 commit e89d952
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions flagrate.js
Expand Up @@ -4811,6 +4811,7 @@
_createOnSelectHandler: function (that, tab) {

return function (e) {
if (/firefox/i.test(navigator.userAgent) === true) { window.event = e; }

that.select(tab);
};
Expand Down Expand Up @@ -7021,6 +7022,7 @@
_createRowOnClickHandler: function (that, row) {

return function (e) {
if (/firefox/i.test(navigator.userAgent) === true) { window.event = e; }

if (that.isEnabled() === false) { return; }

Expand All @@ -7046,6 +7048,7 @@
_createRowOnDblClickHandler: function (that, row) {

return function (e) {
if (/firefox/i.test(navigator.userAgent) === true) { window.event = e; }

if (that.isEnabled() === false) { return; }

Expand Down

0 comments on commit e89d952

Please sign in to comment.