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

This commit is contained in:
czaks 2013-06-15 01:39:39 -04:00
parent 9b3eb9c2ca
commit 1d76164e29
3 changed files with 39 additions and 25 deletions

View File

@ -35,6 +35,7 @@ $(document).ready(function(){
}
last_expanded = $(this);
$(document).trigger('new_post', this);
}
});
$('<span class="omitted"><a href="javascript:void(0)">Hide expanded replies</a>.</span>')

View File

@ -6,12 +6,14 @@
* Copyright (c) 2012 Michael Save <savetheinternet@tinyboard.org>
*
* Usage:
* $config['additional_javascript'][] = 'js/jquery.min.js';
* $config['additional_javascript'][] = 'js/inline-expanding.js';
*
*/
onready(function(){
var link = document.getElementsByTagName('a');
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[0].src && link[i].className != 'file') {
@ -39,8 +41,15 @@ onready(function(){
}
return false;
}
}
}
}
}
}
$('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);
});
});

View File

@ -46,5 +46,9 @@ onready(function(){
};
$('div.post.reply').each(showBackLinks);
$(document).bind('new_post', function(e, post) {
showBackLinks.call(post);
});
});