Repository: ambari Updated Branches: refs/heads/trunk d902509f7 -> 51ff43834
AMBARI-9141. Kerberos wizard: Next button on all pages should have arrow in the text. (jaimin) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/51ff4383 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/51ff4383 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/51ff4383 Branch: refs/heads/trunk Commit: 51ff43834de99e9f4e43770a1319ca888829ae83 Parents: d902509 Author: Jaimin Jetly <[email protected]> Authored: Thu Jan 15 10:33:14 2015 -0800 Committer: Jaimin Jetly <[email protected]> Committed: Thu Jan 15 10:33:14 2015 -0800 ---------------------------------------------------------------------- ambari-web/app/templates/common/progress.hbs | 2 +- ambari-web/app/views/main/admin/kerberos/step3_view.js | 2 +- ambari-web/app/views/main/admin/kerberos/step5_view.js | 2 +- ambari-web/app/views/main/admin/kerberos/step6_view.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/51ff4383/ambari-web/app/templates/common/progress.hbs ---------------------------------------------------------------------- diff --git a/ambari-web/app/templates/common/progress.hbs b/ambari-web/app/templates/common/progress.hbs index cf573e5..409bf31 100644 --- a/ambari-web/app/templates/common/progress.hbs +++ b/ambari-web/app/templates/common/progress.hbs @@ -69,6 +69,6 @@ {{#if view.showBackButton}} <button class="btn pull-left" {{bindAttr disabled="controller.isBackButtonDisabled"}} {{action back target="controller"}}>← {{t common.back}}</button> {{/if}} - <button class="btn btn-success pull-right" {{bindAttr disabled="controller.isSubmitDisabled"}} {{action done target="controller"}}>{{view.submitButtonText}}</button> + <button class="btn btn-success pull-right" {{bindAttr disabled="controller.isSubmitDisabled"}} {{action done target="controller"}}>{{{view.submitButtonText}}}</button> </div> </div> http://git-wip-us.apache.org/repos/asf/ambari/blob/51ff4383/ambari-web/app/views/main/admin/kerberos/step3_view.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/main/admin/kerberos/step3_view.js b/ambari-web/app/views/main/admin/kerberos/step3_view.js index c58e43f..a499a82 100644 --- a/ambari-web/app/views/main/admin/kerberos/step3_view.js +++ b/ambari-web/app/views/main/admin/kerberos/step3_view.js @@ -25,7 +25,7 @@ App.KerberosWizardStep3View = App.KerberosProgressPageView.extend({ noticeCompleted: Em.I18n.t('admin.kerberos.wizard.step3.notice.completed'), - submitButtonText: Em.I18n.t('common.next'), + submitButtonText: Em.I18n.t('common.next') + '→', showBackButton: true http://git-wip-us.apache.org/repos/asf/ambari/blob/51ff4383/ambari-web/app/views/main/admin/kerberos/step5_view.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/main/admin/kerberos/step5_view.js b/ambari-web/app/views/main/admin/kerberos/step5_view.js index 46aabf8..0bf3042 100644 --- a/ambari-web/app/views/main/admin/kerberos/step5_view.js +++ b/ambari-web/app/views/main/admin/kerberos/step5_view.js @@ -24,7 +24,7 @@ App.KerberosWizardStep5View = App.KerberosProgressPageView.extend({ noticeCompleted: Em.I18n.t('admin.kerberos.wizard.step5.notice.completed'), - submitButtonText: Em.I18n.t('common.next'), + submitButtonText: Em.I18n.t('common.next') + '→', showBackButton: false }); \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ambari/blob/51ff4383/ambari-web/app/views/main/admin/kerberos/step6_view.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/main/admin/kerberos/step6_view.js b/ambari-web/app/views/main/admin/kerberos/step6_view.js index 0c75693..c25e963 100644 --- a/ambari-web/app/views/main/admin/kerberos/step6_view.js +++ b/ambari-web/app/views/main/admin/kerberos/step6_view.js @@ -24,7 +24,7 @@ App.KerberosWizardStep6View = App.KerberosProgressPageView.extend({ noticeCompleted: Em.I18n.t('admin.kerberos.wizard.step6.notice.completed'), - submitButtonText: Em.I18n.t('common.next'), + submitButtonText: Em.I18n.t('common.next') + '→', showBackButton: false
