diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2010-06-21 01:35:22 -0400 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2010-06-21 01:35:22 -0400 |
| commit | 41fe6fffb32dbef23f39e844bf36eb0ba6c49c90 (patch) | |
| tree | 63a8d013c0a94c66a03448f8fd267af6c284a9f5 /static/js | |
| parent | d8d4c7028206c5f873f9cb38b1091ad1368dc928 (diff) | |
Make zoom more buttony
Diffstat (limited to 'static/js')
| -rw-r--r-- | static/js/pichat.js | 3 |
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); }); |
