add post score to previews

This commit is contained in:
albert
2013-02-17 15:46:16 -05:00
parent 351e4d426a
commit caf976fb5e
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@
Danbooru.Post.initialize_title_for = function(post) {
var $post = $(post);
$post.attr("title", $post.data("tags") + " uploader:" + $post.data("uploader") + " rating:" + $post.data("rating"));
$post.attr("title", $post.data("tags") + " uploader:" + $post.data("uploader") + " rating:" + $post.data("rating") + " score:" + $post.data("score"));
var status = $post.data("flags");