Repository: ambari Updated Branches: refs/heads/trunk 424cf6580 -> f2e3b132f
AMBARI-20185. Move spinner for Next and Back button in Kerberos Wizard. (dbuzhor via yusaku) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/f2e3b132 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/f2e3b132 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/f2e3b132 Branch: refs/heads/trunk Commit: f2e3b132ff72dece11766205cd32609397df8f7a Parents: 424cf65 Author: Yusaku Sako <yus...@hortonworks.com> Authored: Fri Feb 24 15:00:39 2017 -0800 Committer: Yusaku Sako <yus...@hortonworks.com> Committed: Fri Feb 24 15:00:39 2017 -0800 ---------------------------------------------------------------------- ambari-web/app/views/common/buttons/wizard_buttons.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/f2e3b132/ambari-web/app/views/common/buttons/wizard_buttons.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/views/common/buttons/wizard_buttons.js b/ambari-web/app/views/common/buttons/wizard_buttons.js index 3bf89f2..a2093d7 100644 --- a/ambari-web/app/views/common/buttons/wizard_buttons.js +++ b/ambari-web/app/views/common/buttons/wizard_buttons.js @@ -21,7 +21,8 @@ var App = require('app'); App.WizardNextButton = App.ButtonProgressView.extend({ classNames: ['pull-right'], isInProgressBinding: 'App.router.nextBtnClickInProgress', - buttonClassNames: ['btn-success'], + doSpinRight: false, + buttonClassNames: 'btn-success pull-right', template: Em.Handlebars.compile('{{t common.next}} →'), disabledBinding: 'controller.isSubmitDisabled' }); @@ -31,6 +32,6 @@ App.WizardBackButton = App.ButtonProgressView.extend({ isInProgressBinding: 'App.router.backBtnClickInProgress', buttonClassNames: ['btn-default'], template: Em.Handlebars.compile('← {{t common.back}}'), - doSpinRight: false, + buttonClassNames: 'pull-left', disabledBinding: 'controller.isBackButtonDisabled' });