javascripts: fixed interactions (BEWARE, inline-expanding.js now requires jquery! fix your configs)

Conflicts:
	js/expand.js
	js/inline-expanding.js
This commit is contained in:
czaks 2013-06-15 01:39:39 -04:00 committed by Michael Foster
parent e648121e4a
commit 2868dd7886
3 changed files with 8 additions and 5 deletions

View file

@ -14,7 +14,7 @@
onready(function(){
var inline_expand_post = function() {
var link = this.getElementsByTagName('a');
for (var i = 0; i < link.length; i++) {
if (typeof link[i] == "object" && link[i].childNodes && typeof link[i].childNodes[0] !== 'undefined' && link[i].childNodes[0].src && link[i].className != 'file') {
link[i].childNodes[0].style.maxWidth = '95%';
@ -54,7 +54,7 @@ onready(function(){
if (window.jQuery) {
$('div[id^="thread_"]').each(inline_expand_post);
// allow to work with auto-reload.js, etc.
$(document).bind('new_post', function(e, post) {
inline_expand_post.call(post);
@ -64,4 +64,3 @@ onready(function(){
}
});