Browse Source

Bugfix: scroll to thumbnail on multipost close

Indroduced in 7364e85
gitIgnore1
marktaiwan 9 years ago
committed by czaks
parent
commit
deefe7225d
  1. 2
      js/inline-expanding.js

2
js/inline-expanding.js

@ -158,7 +158,7 @@ $(document).ready(function(){
// on multifile posts, determin how many other images are still expanded
still_open = post_body.find('.post-image').filter(function(){
return $(this).parent().attr('data-expanded') == 'true';
return $(this).parent().data('expanded') == 'true';
}).length;
// deal with differnt boards' menu styles

Loading…
Cancel
Save