Change global variable to document.sequencer_image

This commit is contained in:
Chinmay Pandhare
2017-03-12 13:44:07 +05:30
parent 7557c9ede8
commit f695e650a0
3 changed files with 3 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ ImageSequencer = function ImageSequencer(options) {
image.onload = function() {
run(image);
if (callback) callback(image);
document.image = image;
document.sequencer_image = image;
}
image.src = src;
}