1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-27 17:00:52 +01:00

Fix expand-too-long.js for multifile

This commit is contained in:
8chan 2014-05-23 21:24:16 +00:00 committed by Fredrick Brennan
parent 02f1514c70
commit 76567cbd38

View File

@ -23,7 +23,7 @@ $(function() {
url: url,
context: document.body,
success: function(data) {
var content = $(data).find('#'+url.split('#')[1]).next().html();
var content = $(data).find('#'+url.split('#')[1]).next().next().html();
body.html(content);
}