expand-too-long.js: initial commit
This commit is contained in:
parent
1b8efaee8c
commit
7eb2bef107
39
js/expand-too-long.js
Normal file
39
js/expand-too-long.js
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/*
|
||||||
|
* expand-too-long.js
|
||||||
|
* https://github.com/vichan-devel/vichan/blob/master/js/expand-too-long.js
|
||||||
|
*
|
||||||
|
* Released under the MIT license
|
||||||
|
* Copyright (c) 2013-2014 Marcin Łabanowski <marcin@6irc.net>
|
||||||
|
*
|
||||||
|
* Usage:
|
||||||
|
* $config['additional_javascript'][] = 'js/jquery.min.js';
|
||||||
|
* $config['additional_javascript'][] = 'js/expand-too-long.js';
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
$(function() {
|
||||||
|
var do_expand = function() {
|
||||||
|
$(this).find('a').click(function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
var url = $(this).attr('href');
|
||||||
|
var body = $(this).parent().parent();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: url,
|
||||||
|
context: document.body,
|
||||||
|
success: function(data) {
|
||||||
|
var content = $(data).find('#'+url.split('#')[1]).next().html();
|
||||||
|
|
||||||
|
body.html(content);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
$('.toolong').each(do_expand);
|
||||||
|
|
||||||
|
$(document).on("new_post", function(e, post) {
|
||||||
|
$(post).find('.toolong').each(do_expand)
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user