Repository: ambari Updated Branches: refs/heads/trunk e1ca79f6f -> b698c294b
AMBARI-5586. Strange behaviour of progress bar after successful login (alexantonenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/b698c294 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/b698c294 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/b698c294 Branch: refs/heads/trunk Commit: b698c294b15212e91a7c765f47ae656fe31dbaaa Parents: e1ca79f Author: Alex Antonenko <[email protected]> Authored: Mon Apr 28 14:05:18 2014 +0300 Committer: Alex Antonenko <[email protected]> Committed: Mon Apr 28 14:05:18 2014 +0300 ---------------------------------------------------------------------- ambari-web/app/templates/main.hbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/b698c294/ambari-web/app/templates/main.hbs ---------------------------------------------------------------------- diff --git a/ambari-web/app/templates/main.hbs b/ambari-web/app/templates/main.hbs index 612fdcd..fd2ac55 100644 --- a/ambari-web/app/templates/main.hbs +++ b/ambari-web/app/templates/main.hbs @@ -21,15 +21,15 @@ {{{versionConflictAlertBody}}} </div> {{else}} - {{#if isClusterDataLoaded}} - {{outlet}} - {{/if}} {{#unless isClusterDataLoaded}} <h2>{{t app.loadingPlaceholder}} </h2> <div class="progress progress-striped active"> <div class="bar" {{bindAttr style="controller.clusterDataLoadedPercent"}}></div> </div> {{/unless}} + {{#if isClusterDataLoaded}} + {{outlet}} + {{/if}} {{/if}}
