leftypol/js/inline-expanding.js

67 lines
2.2 KiB
JavaScript
Raw Normal View History

2012-03-31 08:18:53 +00:00
/*
* inline-expanding.js
* https://github.com/savetheinternet/Tinyboard/blob/master/js/inline-expanding.js
*
* Released under the MIT license
* Copyright (c) 2012-2013 Michael Save <savetheinternet@tinyboard.org>
* Copyright (c) 2013-2014 Marcin Łabanowski <marcin@6irc.net>
2012-03-31 08:18:53 +00:00
*
* Usage:
* // $config['additional_javascript'][] = 'js/jquery.min.js';
2012-03-31 08:18:53 +00:00
* $config['additional_javascript'][] = 'js/inline-expanding.js';
*
*/
2012-03-31 08:37:31 +00:00
onready(function(){
var inline_expand_post = function() {
var link = this.getElementsByTagName('a');
for (var i = 0; i < link.length; i++) {
2013-08-18 06:40:07 +00:00
if (typeof link[i] == "object" && link[i].childNodes && typeof link[i].childNodes[0] !== 'undefined' && link[i].childNodes[0].src && link[i].childNodes[0].className.match(/post-image/) && !link[i].className.match(/file/)) {
link[i].childNodes[0].style.maxWidth = '95%';
link[i].onclick = function(e) {
if (this.childNodes[0].className == 'hidden')
return false;
2013-07-30 23:07:28 +00:00
if (e.which == 2 || e.metaKey)
return true;
if (!this.dataset.src) {
this.dataset.expanded = 'true';
this.dataset.src= this.childNodes[0].src;
this.dataset.width = this.childNodes[0].style.width;
this.dataset.height = this.childNodes[0].style.height;
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 = '';
delete this.style.filter;
}
} else {
this.childNodes[0].src = this.dataset.src;
this.childNodes[0].style.width = this.dataset.width;
this.childNodes[0].style.height = this.dataset.height;
delete this.dataset.expanded;
delete this.dataset.src;
delete this.childNodes[0].style.opacity;
delete this.childNodes[0].style.filter;
2012-03-31 08:18:53 +00:00
}
return false;
2012-03-31 08:18:53 +00:00
}
}
}
}
if (window.jQuery) {
$('div[id^="thread_"]').each(inline_expand_post);
// allow to work with auto-reload.js, etc.
$(document).on('new_post', function(e, post) {
inline_expand_post.call(post);
});
} else {
inline_expand_post.call(document);
}
2012-03-31 08:18:53 +00:00
});