changeset 5099:50cf39fe8335 stable

files: fix hiding of old content while reloading Fixing typo from 43cafe348c9a.
author Mads Kiilerich <madski@unity3d.com>
date Thu, 07 May 2015 16:23:45 +0200
parents fe3c9c048740
children 496bd1bc9a69
files kallithea/templates/files/files.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/files/files.html	Thu May 07 13:29:49 2015 +0200
+++ b/kallithea/templates/files/files.html	Thu May 07 16:23:45 2015 +0200
@@ -240,7 +240,7 @@
         var selected = e.currentTarget.options[e.currentTarget.selectedIndex].value;
         if(selected && selected != "${c.changeset.raw_id}"){
             window.location = pyroutes.url('files_home', {'repo_name': "${h.safe_unicode(c.repo_name)}", 'revision': selected, 'f_path': "${h.safe_unicode(c.file.path)}"});
-            $("#browserblock").hide();
+            $("#body.browserblock").hide();
         } else {
             $("#branch_selector").val("${c.changeset.raw_id}");
         }