Browse Source

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

Conflicts:
	js/expand.js
	js/inline-expanding.js
pull/40/head
czaks 11 years ago
committed by Michael Foster
parent
commit
2868dd7886
  1. 4
      js/expand.js
  2. 5
      js/inline-expanding.js
  3. 4
      js/show-backlinks.js

4
js/expand.js

@ -14,7 +14,7 @@
$(document).ready(function(){
if($('div.banner').length != 0)
return; // not index
$('div.post.op span.omitted').each(function() {
$(this)
.html($(this).text().replace(_("Click reply to view."), '<a href="javascript:void(0)">'+_("Click to expand")+'</a>.'))
@ -51,4 +51,4 @@ $(document).ready(function(){
});
});
});
});
});

5
js/inline-expanding.js

@ -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(){
}
});

4
js/show-backlinks.js

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

Loading…
Cancel
Save