add uploader-id and top-tagger-id data attrs to post previews

This commit is contained in:
Albert Yi
2018-04-09 11:12:07 -07:00
parent 23fef71346
commit 485c3b01c7
2 changed files with 7 additions and 1 deletions

View File

@@ -147,7 +147,11 @@
var tags = String($post.attr("data-tags")).match(/\S+/g) || [];
tags = tags.concat(String($post.attr("data-pools")).match(/\S+/g) || []);
tags.push("rating:" + $post.data("rating"));
// tags.push("user:" + $post.attr("data-uploader").toLowerCase());
if ($post.attr("data-uploader")) {
tags.push("user:" + $post.attr("data-uploader").toLowerCase());
}
tags.push("uploaderid:" + $post.attr("data-uploader-id"));
tags.push("toptaggerid:" + $post.attr("data-top-tagger"));
$.each(String($post.data("flags")).match(/\S+/g) || [], function(i, v) {
tags.push("status:" + v);
});