diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index 352aabd39..1b22260eb 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -3352,7 +3352,7 @@ this.board = this.thread.board; this.nodes = { root: root, - thumb: $('.catalog-thumb', root), + thumb: $('.thumb', root), icons: $('.catalog-icons', root), postCount: $('.post-count', root), fileCount: $('.file-count', root), @@ -5221,6 +5221,9 @@ el: el, latestEvent: e, endEvents: 'mouseout', + asapTest: function() { + return true; + }, offsetX: 15, offsetY: -20 }); diff --git a/builds/crx/script.js b/builds/crx/script.js index 004fb014e..1cb6f00f7 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -3378,7 +3378,7 @@ this.board = this.thread.board; this.nodes = { root: root, - thumb: $('.catalog-thumb', root), + thumb: $('.thumb', root), icons: $('.catalog-icons', root), postCount: $('.post-count', root), fileCount: $('.file-count', root), @@ -5247,6 +5247,9 @@ el: el, latestEvent: e, endEvents: 'mouseout', + asapTest: function() { + return true; + }, offsetX: 15, offsetY: -20 }); diff --git a/src/General/Index.coffee b/src/General/Index.coffee index dbdd2a671..e1aedfbfc 100644 --- a/src/General/Index.coffee +++ b/src/General/Index.coffee @@ -247,6 +247,7 @@ Index = el: el latestEvent: e endEvents: 'mouseout' + asapTest: -> true offsetX: 15 offsetY: -20 setTimeout (-> el.hidden = false if el.parentNode), .25 * $.SECOND diff --git a/src/General/lib/catalogthread.class b/src/General/lib/catalogthread.class index 40f6fcd94..b8ac9b681 100644 --- a/src/General/lib/catalogthread.class +++ b/src/General/lib/catalogthread.class @@ -7,7 +7,7 @@ class CatalogThread @board = @thread.board @nodes = root: root - thumb: $ '.catalog-thumb', root + thumb: $ '.thumb', root icons: $ '.catalog-icons', root postCount: $ '.post-count', root fileCount: $ '.file-count', root