From e89d952b154743281149f08747ca23f48d1c2d01 Mon Sep 17 00:00:00 2001 From: Shinichi Shinoda Date: Tue, 26 Apr 2016 18:30:15 +0900 Subject: [PATCH] Grid, Tab: fixed window.event --- flagrate.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flagrate.js b/flagrate.js index 4e822d89..17b6b01e 100644 --- a/flagrate.js +++ b/flagrate.js @@ -4811,6 +4811,7 @@ _createOnSelectHandler: function (that, tab) { return function (e) { + if (/firefox/i.test(navigator.userAgent) === true) { window.event = e; } that.select(tab); }; @@ -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; } @@ -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; }