Skip to content
This repository has been archived by the owner on Oct 13, 2018. It is now read-only.

Added pointer-events: none to notification #36

Merged
merged 2 commits into from
Apr 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1822,7 +1822,8 @@ var styles = {
backgroundColor: "#1B2032",
margin: 0,
color: "white",
textAlign: "center"
textAlign: "center",
pointerEvents: "none"
};

var elem;
Expand Down Expand Up @@ -1927,6 +1928,7 @@ exports.flash = function (message, timeout) {

return elem;
};

},{"./browser.utils":2,"./ghostmode.scroll":14}],17:[function(require,module,exports){
"use strict";

Expand Down
5 changes: 3 additions & 2 deletions lib/notify.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ var styles = {
backgroundColor: "#1B2032",
margin: 0,
color: "white",
textAlign: "center"
textAlign: "center",
pointerEvents: "none"
};

var elem;
Expand Down Expand Up @@ -120,4 +121,4 @@ exports.flash = function (message, timeout) {
}, timeout || 2000);

return elem;
};
};