You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been trying to use this. I found some fixes. They are small, so just reporting for now. They can be probably updated much faster by some else, then me forking / changing / and PRing.
In GIFEncoder.js:
line 148, should be sizeSet, not sizeset, causes exception when passing ImageData
The following lines need to be added to the end of download() to actually make it work:
var click = document.createEvent('MouseEvents'); click.initEvent('click', true, false); templink.dispatchEvent(click);
The text was updated successfully, but these errors were encountered:
My implement is templink element append under document root. It's work fine on Firefox.
But @Palmer-JC 's code seems to more better. I hope to repository taking his code.
I have been trying to use this. I found some fixes. They are small, so just reporting for now. They can be probably updated much faster by some else, then me forking / changing / and PRing.
In GIFEncoder.js:
var click = document.createEvent('MouseEvents');
click.initEvent('click', true, false);
templink.dispatchEvent(click);
The text was updated successfully, but these errors were encountered: