diff options
Diffstat (limited to 'public/assets/js/lib/views/details/index.js')
| -rw-r--r-- | public/assets/js/lib/views/details/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/assets/js/lib/views/details/index.js b/public/assets/js/lib/views/details/index.js index 25ae020..b8fa859 100644 --- a/public/assets/js/lib/views/details/index.js +++ b/public/assets/js/lib/views/details/index.js @@ -5,8 +5,7 @@ var DetailsView = View.extend({ action: "/api/thread/", keywordAction: "/api/keyword/", - - + initialize: function(opt){ this.comments = new CommentsView ({ parent: this }) this.files = new FilesView ({ parent: this }) @@ -21,6 +20,7 @@ var DetailsView = View.extend({ }, populate: function(data){ + $("body").removeClass('loading') var thread = data.thread $("h1").html(thread.title) $(".subtitle").show().html("<a href='/'>< Home</a> | " + metadata(thread)) |
