Skip to content

Commit

Permalink
v7.40.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cliqz-ci committed Nov 11, 2019
1 parent b818928 commit f4f283f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v7.40.0
v7.40.1
4 changes: 2 additions & 2 deletions modules/core/sources/content.es
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ registerContentScript({
const onMouseDown = (ev) => {
recordMouseDown(ev, CLIQZ);
};
window.addEventListener('mouseDown', onMouseDown);
window.addEventListener('mousedown', onMouseDown);

const onDOMContentLoaded = () => {
recordMeta(window, CLIQZ);
Expand All @@ -172,7 +172,7 @@ registerContentScript({

// Stop listening
window.addEventListener('unload', () => {
window.removeEventListener('mouseDown', onMouseDown);
window.removeEventListener('mousedown', onMouseDown);
window.removeEventListener('DOMContentLoaded', onDOMContentLoaded);
}, { once: true });

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "browser-core",
"version": "7.40.0",
"version": "7.40.1",
"description": "Cliqz features, shared across products including Cliqz browsers for Windows, Mac, Android and iOS",
"license": "MPL-2.0",
"author": {
Expand Down

0 comments on commit f4f283f

Please sign in to comment.