Browse Source

inline-expanding-filename.js: expand images also by clicking a link and not image

pull/40/head
czaks 11 years ago
parent
commit
49993a3559
  1. 33
      js/inline-expanding-filename.js

33
js/inline-expanding-filename.js

@ -0,0 +1,33 @@
/*
* inline-expanding-filename.js
* Binds image filename link to expanding, to make kusaba x users somewhat more accustomed.
* https://github.com/vichan-devel/Tinyboard/blob/master/js/inline-expanding.js
*
* Released under the MIT license
* Copyright (c) 2012-2013 Marcin Łabanowski <marcin@6irc.net>
*
* Usage:
* $config['additional_javascript'][] = 'js/jquery.min.js';
* $config['additional_javascript'][] = 'js/inline-expanding.js';
* $config['additional_javascript'][] = 'js/inline-expanding-filename.js';
*
*/
onready(function(){
var inline_expanding_filename = function() {
$(this).find(".fileinfo > a").click(function(){
var imagelink = $(this).parent().parent().find('a[target="_blank"]:first');
if(imagelink.length > 0) {
imagelink.click();
return false;
}
});
};
$('div[id^="thread_"]').each(inline_expanding_filename);
// allow to work with auto-reload.js, etc.
$(document).bind('new_post', function(e, post) {
inline_expanding_filename.call(post);
});
});
Loading…
Cancel
Save