diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 08b54cfd8..756d849fa 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -11298,7 +11298,6 @@ file.style.maxWidth = style.maxWidth; file.loop = true; file.autoplay = Conf['Autoplay']; - this.file.thumb = file; if (Conf['Image Hover']) { $.on(file, 'mouseover', ImageHover.mouseover); } diff --git a/builds/crx/script.js b/builds/crx/script.js index 85296f619..21946aa1a 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -11309,7 +11309,6 @@ file.style.maxWidth = style.maxWidth; file.loop = true; file.autoplay = Conf['Autoplay']; - this.file.thumb = file; if (Conf['Image Hover']) { $.on(file, 'mouseover', ImageHover.mouseover); } diff --git a/src/Images/ImageLoader.coffee b/src/Images/ImageLoader.coffee index f118280f1..8934d8295 100755 --- a/src/Images/ImageLoader.coffee +++ b/src/Images/ImageLoader.coffee @@ -46,7 +46,6 @@ ImageLoader = file.style.maxWidth = style.maxWidth file.loop = true file.autoplay = Conf['Autoplay'] - @file.thumb = file $.on file, 'mouseover', ImageHover.mouseover if Conf['Image Hover']