summaryrefslogtreecommitdiff
path: root/static/js
diff options
context:
space:
mode:
Diffstat (limited to 'static/js')
-rw-r--r--static/js/pichat.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/static/js/pichat.js b/static/js/pichat.js
index 32727f1..2a994b0 100644
--- a/static/js/pichat.js
+++ b/static/js/pichat.js
@@ -1052,7 +1052,8 @@ function initChatMsgs() {
var zoomlink = $('<a>')
.attr({'href': imgurl })
.addClass('msg-image-zoom')
- .append($('<img>').attr('src', 'http://dump.fm/static/img/zoom.gif'))
+ .append($('<img>').attr('src', 'http://dump.fm/static/img/zoom.gif')
+ .addClass('zoom-icon'))
.click(function() { window.open(imgurl); return false; });
$(this).append(zoomlink);
});