# HG changeset patch # User Mads Kiilerich # Date 1431008625 -7200 # Node ID 50cf39fe8335a562f4d39fda2cdb228e48e19aec # Parent fe3c9c048740e5eccae2595052a5137f0c6ab0e5 files: fix hiding of old content while reloading Fixing typo from 43cafe348c9a. diff -r fe3c9c048740 -r 50cf39fe8335 kallithea/templates/files/files.html --- 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}"); }