Set CatalogThread.thumb back to the anchor

This fixes: Navigate.navigate, Index hover features, etc.
This commit is contained in:
Zixaphir 2015-01-12 21:35:34 -07:00
parent b5fd8738b4
commit b80989fe30
4 changed files with 10 additions and 3 deletions

View File

@ -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
});

View File

@ -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
});

View File

@ -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

View File

@ -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