Merge branch 'master' of github.com:vichan-devel/Tinyboard

This commit is contained in:
czaks 2014-05-28 15:37:36 +02:00
commit c04b419639
3 changed files with 4 additions and 3 deletions

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);
}