Merge branch 'master' into menu
This commit is contained in:
commit
27d79dc72c
@ -691,7 +691,7 @@
|
||||
email: function(post) {
|
||||
var mail;
|
||||
if (mail = $('.useremail', post.el)) {
|
||||
return mail.href.slice(7);
|
||||
return decodeURIComponent(mail.href.slice(7));
|
||||
}
|
||||
return false;
|
||||
},
|
||||
|
||||
@ -548,7 +548,8 @@ Filter =
|
||||
email: (post) ->
|
||||
if mail = $ '.useremail', post.el
|
||||
# remove 'mailto:'
|
||||
return mail.href[7..]
|
||||
# decode %20 into space for example
|
||||
return decodeURIComponent mail.href[7..]
|
||||
false
|
||||
subject: (post) ->
|
||||
$('.postInfo .subject', post.el).textContent or false
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user