mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-02-17 19:29:28 +01:00
javascripts: fixed interactions (BEWARE, inline-expanding.js now requires jquery! fix your configs)
This commit is contained in:
parent
9b3eb9c2ca
commit
1d76164e29
@ -35,6 +35,7 @@ $(document).ready(function(){
|
|||||||
}
|
}
|
||||||
last_expanded = $(this);
|
last_expanded = $(this);
|
||||||
|
|
||||||
|
$(document).trigger('new_post', this);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('<span class="omitted"><a href="javascript:void(0)">Hide expanded replies</a>.</span>')
|
$('<span class="omitted"><a href="javascript:void(0)">Hide expanded replies</a>.</span>')
|
||||||
|
@ -6,41 +6,50 @@
|
|||||||
* Copyright (c) 2012 Michael Save <savetheinternet@tinyboard.org>
|
* Copyright (c) 2012 Michael Save <savetheinternet@tinyboard.org>
|
||||||
*
|
*
|
||||||
* Usage:
|
* Usage:
|
||||||
|
* $config['additional_javascript'][] = 'js/jquery.min.js';
|
||||||
* $config['additional_javascript'][] = 'js/inline-expanding.js';
|
* $config['additional_javascript'][] = 'js/inline-expanding.js';
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
onready(function(){
|
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++) {
|
for(var i = 0; i < link.length; i++) {
|
||||||
if(typeof link[i] == "object" && link[i].childNodes[0].src && link[i].className != 'file') {
|
if(typeof link[i] == "object" && link[i].childNodes[0].src && link[i].className != 'file') {
|
||||||
link[i].childNodes[0].style.maxWidth = '95%';
|
link[i].childNodes[0].style.maxWidth = '95%';
|
||||||
link[i].onclick = function(e) {
|
link[i].onclick = function(e) {
|
||||||
if(e.which == 2) {
|
if(e.which == 2) {
|
||||||
return true;
|
return true;
|
||||||
}
|
|
||||||
if(!this.tag) {
|
|
||||||
this.tag = this.childNodes[0].src;
|
|
||||||
this.childNodes[0].src = this.href;
|
|
||||||
this.childNodes[0].style.width = 'auto';
|
|
||||||
this.childNodes[0].style.height = 'auto';
|
|
||||||
this.childNodes[0].style.opacity = '0.4';
|
|
||||||
this.childNodes[0].style.filter = 'alpha(opacity=40)';
|
|
||||||
this.childNodes[0].onload = function() {
|
|
||||||
this.style.opacity = '1';
|
|
||||||
this.style.filter = '';
|
|
||||||
}
|
}
|
||||||
} else {
|
if(!this.tag) {
|
||||||
this.childNodes[0].src = this.tag;
|
this.tag = this.childNodes[0].src;
|
||||||
this.childNodes[0].style.width = 'auto';
|
this.childNodes[0].src = this.href;
|
||||||
this.childNodes[0].style.height = 'auto';
|
this.childNodes[0].style.width = 'auto';
|
||||||
this.tag = '';
|
this.childNodes[0].style.height = 'auto';
|
||||||
|
this.childNodes[0].style.opacity = '0.4';
|
||||||
|
this.childNodes[0].style.filter = 'alpha(opacity=40)';
|
||||||
|
this.childNodes[0].onload = function() {
|
||||||
|
this.style.opacity = '1';
|
||||||
|
this.style.filter = '';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.childNodes[0].src = this.tag;
|
||||||
|
this.childNodes[0].style.width = 'auto';
|
||||||
|
this.childNodes[0].style.height = 'auto';
|
||||||
|
this.tag = '';
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
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);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -46,5 +46,9 @@ onready(function(){
|
|||||||
};
|
};
|
||||||
|
|
||||||
$('div.post.reply').each(showBackLinks);
|
$('div.post.reply').each(showBackLinks);
|
||||||
|
|
||||||
|
$(document).bind('new_post', function(e, post) {
|
||||||
|
showBackLinks.call(post);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user