Fix user id filtering.
This commit is contained in:
parent
4a2ba910db
commit
070816de06
@ -658,7 +658,7 @@
|
|||||||
uniqueid: function(post) {
|
uniqueid: function(post) {
|
||||||
var uid;
|
var uid;
|
||||||
if (uid = $('.posteruid', post.el)) {
|
if (uid = $('.posteruid', post.el)) {
|
||||||
return uid.textContent;
|
return uid.textContent.slice(5, -1);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
|||||||
@ -542,9 +542,8 @@ Filter =
|
|||||||
name: (post) ->
|
name: (post) ->
|
||||||
$('.name', post.el).textContent
|
$('.name', post.el).textContent
|
||||||
uniqueid: (post) ->
|
uniqueid: (post) ->
|
||||||
# NEW HTML ???
|
|
||||||
if uid = $ '.posteruid', post.el
|
if uid = $ '.posteruid', post.el
|
||||||
return uid.textContent
|
return uid.textContent[5...-1]
|
||||||
false
|
false
|
||||||
tripcode: (post) ->
|
tripcode: (post) ->
|
||||||
if trip = $ '.postertrip', post.el
|
if trip = $ '.postertrip', post.el
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user