This commit is contained in:
Zixaphir 2014-03-14 17:29:02 -07:00
parent be4be5a94b
commit 99babc304a
3 changed files with 3 additions and 3 deletions

View File

@ -3889,7 +3889,7 @@
return "/" + thread.board + "/ - " + excerpt;
},
threadFromRoot: function(root) {
return g.threads[$('.opcontainer', root).dataset.fullID];
return g.threads[$('.opContainer', root).dataset.fullID];
},
threadFromNode: function(node) {
return Get.threadFromRoot($.x('ancestor::div[@class="thread"]', node));

View File

@ -3948,7 +3948,7 @@
return "/" + thread.board + "/ - " + excerpt;
},
threadFromRoot: function(root) {
return g.threads[$('.opcontainer', root).dataset.fullID];
return g.threads[$('.opContainer', root).dataset.fullID];
},
threadFromNode: function(node) {
return Get.threadFromRoot($.x('ancestor::div[@class="thread"]', node));

View File

@ -8,7 +8,7 @@ Get =
excerpt = "#{excerpt[...67]}..."
"/#{thread.board}/ - #{excerpt}"
threadFromRoot: (root) ->
g.threads[$('.opcontainer', root).dataset.fullID]
g.threads[$('.opContainer', root).dataset.fullID]
threadFromNode: (node) ->
Get.threadFromRoot $.x 'ancestor::div[@class="thread"]', node
postFromRoot: (root) ->