Skip to content

Commit

Permalink
Merge pull request dataarts#46 from Teybeo/master
Browse files Browse the repository at this point in the history
Fix the save options popup blocking mouse events on Firefox
  • Loading branch information
doug committed Aug 19, 2014
2 parents 586c060 + 46de34b commit 072e945
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/dat/dom/CenteredDiv.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ define([
display: 'none',
zIndex: '1000',
opacity: 0,
WebkitTransition: 'opacity 0.2s linear'
WebkitTransition: 'opacity 0.2s linear',
transition: 'opacity 0.2s linear'
});

dom.makeFullscreen(this.backgroundElement);
Expand All @@ -39,7 +40,8 @@ define([
display: 'none',
zIndex: '1001',
opacity: 0,
WebkitTransition: '-webkit-transform 0.2s ease-out, opacity 0.2s linear'
WebkitTransition: '-webkit-transform 0.2s ease-out, opacity 0.2s linear',
transition: 'transform 0.2s ease-out, opacity 0.2s linear'
});


Expand All @@ -57,8 +59,6 @@ define([
CenteredDiv.prototype.show = function() {

var _this = this;



this.backgroundElement.style.display = 'block';

Expand Down

0 comments on commit 072e945

Please sign in to comment.