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) {
var uniqueid;
if (uniqueid = $('.posteruid', post)) return uniqueid.textContent;
if (uniqueid = $('.posteruid', post.el)) return uniqueid.textContent;
return false;
},
tripcode: function(post) {

View File

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