From 76567cbd385e615da41957ca0be2d33114cf01ad Mon Sep 17 00:00:00 2001 From: 8chan Date: Fri, 23 May 2014 21:24:16 +0000 Subject: [PATCH] Fix expand-too-long.js for multifile --- js/expand-too-long.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/expand-too-long.js b/js/expand-too-long.js index 23921eaf..e768aa27 100644 --- a/js/expand-too-long.js +++ b/js/expand-too-long.js @@ -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); }