Browse Source

fix hide-images.js interactions (should be STI-safe)

pull/40/head
czaks 10 years ago
parent
commit
2382603b4d
  1. 2
      js/expand.js
  2. 23
      js/hide-images.js

2
js/expand.js

@ -27,7 +27,7 @@ $(document).ready(function(){
success: function(data) {
var last_expanded = false;
$(data).find('div.post.reply').each(function() {
thread.find('.hidden').remove();
thread.find('div.hidden').remove();
var post_in_doc = thread.find('#' + $(this).attr('id'));
if(post_in_doc.length == 0) {
if(last_expanded) {

23
js/hide-images.js

@ -16,8 +16,6 @@
$(document).ready(function(){
$('<style type="text/css"> img.hidden{ opacity: 0.1; background: grey; border: 1px solid #000; } </style>').appendTo($('head'));
var board = $('form input[name="board"]').val().toString();
if (!localStorage.hiddenimages)
localStorage.hiddenimages = '{}';
@ -38,14 +36,16 @@ $(document).ready(function(){
}
}
if (!hidden_data[board]) {
hidden_data[board] = {}; // id : timestamp
}
$('div.post > a > img, div > a > img').each(function() {
var handle_images = function() {
var img = this;
var fileinfo = $(this).parent().prev();
var id = $(this).parent().parent().find('>p.intro>a.post_no:eq(1),>div.post.op>p.intro>a.post_no:eq(1)').text();
var board = $(this).parents('[id^="thread_"]').data("board");
if (!hidden_data[board]) {
hidden_data[board] = {}; // id : timestamp
}
var replacement = $('<span>'+_('File')+' <small>(<a class="hide-image-link" href="javascript:void(0)">'+_('hide')+'</a>)</small>: </span>');
@ -79,6 +79,11 @@ $(document).ready(function(){
if (hidden_data[board][id])
$(this).parent().prev().find('.hide-image-link').click();
});
};
$('div.post > a > img, div > a > img').each(handle_images);
$(document).bind('new_post', function(e, post) {
$(post).find('> a > img').each(handle_images);
});
});

Loading…
Cancel
Save