Skip to content
Snippets Groups Projects
Commit 1fbec0a0 authored by Jared Hancock's avatar Jared Hancock
Browse files

oops: Fix hover and download of inline images (again)

parent a6722758
No related branches found
No related tags found
No related merge requests found
......@@ -433,7 +433,7 @@ showImagesInline = function(urls, thread_id) {
? '.thread-body img[data-cid]'
: '.thread-body#thread-id-'+thread_id+' img[data-cid]';
$(selector).each(function(i, el) {
var cid = $(el).data('cid'),
var cid = $(el).data('cid').toLowerCase(),
info = urls[cid],
e = $(el);
if (info) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment