Skip to content

Commit

Permalink
Merge pull request #210 from ikedas/issue-206
Browse files Browse the repository at this point in the history
Issue #206: Firefox freezes on "Edit robot config" page by ikedas
  • Loading branch information
ikedas authored Feb 28, 2018
2 parents eec36eb + f31a3b5 commit 2f526f5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions www/external/foundation/js/foundation/foundation.tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,20 @@
return matchMedia(Foundation.media_queries['large']).matches;
},

isInitted : false,

events : function (instance) {
var self = this,
S = self.S;

self.create(this.S(instance));

if (this.isInitted) {
return;
}

this.isInitted = true;

function _startShow(elt, $this, immediate) {
if (elt.timer) {
return;
Expand Down

0 comments on commit 2f526f5

Please sign in to comment.