This commit is contained in:
No Face 2012-03-03 09:05:09 +01:00
parent 12128ca153
commit 2e82405842
2 changed files with 2 additions and 2 deletions

View File

@ -633,7 +633,7 @@
}, },
uniqueid: function(post) { uniqueid: function(post) {
var uniqueid; var uniqueid;
if (uniqueid = $('.posteruid', post)) return uniqueid.textContent; if (uniqueid = $('.posteruid', post.el)) return uniqueid.textContent;
return false; return false;
}, },
tripcode: function(post) { tripcode: function(post) {

View File

@ -557,7 +557,7 @@ filter =
name = if post.isOP then $ '.postername', post.el else $ '.commentpostername', post.el name = if post.isOP then $ '.postername', post.el else $ '.commentpostername', post.el
name.textContent name.textContent
uniqueid: (post) -> uniqueid: (post) ->
if uniqueid = $ '.posteruid', post if uniqueid = $ '.posteruid', post.el
return uniqueid.textContent return uniqueid.textContent
false false
tripcode: (post) -> tripcode: (post) ->