From 536b189c1a7173b2ea5f5ba16387ec904a7ce40e Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Rekucki?= Date: Mon, 14 Sep 2009 11:51:50 +0200 Subject: [PATCH] Toolbar extra fix. --- apps/explorer/views.py | 4 +++- project/static/js/editor.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/explorer/views.py b/apps/explorer/views.py index 601f689c..76d04563 100644 --- a/apps/explorer/views.py +++ b/apps/explorer/views.py @@ -422,7 +422,9 @@ class panel_view(object): rpath = file_path(path) user_branch = file_branch(path, request.user) try: - return {'html': html.transform(repo.get_file(rpath, user_branch), is_file=False)} + result = html.transform(repo.get_file(rpath, user_branch), is_file=False) + print "HTML: %r" % result + return {'html': result} except (ParseError, ValidationError), e: return direct_to_template(request, 'explorer/panels/parse_error.html', extra_context={ 'fileid': path, 'exception_type': type(e).__name__, 'exception': e, diff --git a/project/static/js/editor.js b/project/static/js/editor.js index 69c27b1e..3ae16b0a 100644 --- a/project/static/js/editor.js +++ b/project/static/js/editor.js @@ -146,7 +146,7 @@ Panel.prototype.connectToolbar = function() var extra_buttons = $('span.panel-toolbar-extra', toolbar); var placeholder = $('div.panel-toolbar span.panel-toolbar-extra', this.wrap); placeholder.replaceWith(extra_buttons); - extra_buttons.hide(); + placeholder.hide(); var action_buttons = $('button', extra_buttons); -- 2.20.1