Skip to content
Snippets Groups Projects
Commit c5d38bb5 authored by Vincent Nivoliers's avatar Vincent Nivoliers
Browse files

new attempt for a mouse event fix

parent cc739a6c
No related branches found
No related tags found
No related merge requests found
...@@ -228,7 +228,7 @@ function blob_download() { ...@@ -228,7 +228,7 @@ function blob_download() {
window.requestAnimationFrame(function () { window.requestAnimationFrame(function () {
var event ; var event ;
if(typeof MouseEvent !nn 'function') { if(typeof MouseEvent !== 'function') {
event = document.createEvent("MouseEvent"); event = document.createEvent("MouseEvent");
event.initMouseEvent("click",true,true,window,0,0,0,0,0,false,false,false,false,0,null); event.initMouseEvent("click",true,true,window,0,0,0,0,0,false,false,false,false,0,null);
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment