You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by jo...@apache.org on 2014/09/02 14:12:41 UTC

[14/16] git commit: AMBARI-7104. Slider View: Rename Freeze/Thaw actions to Stop/Start (alexantonenko)

AMBARI-7104. Slider View: Rename Freeze/Thaw actions to Stop/Start (alexantonenko)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/4a0a0edf
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/4a0a0edf
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/4a0a0edf

Branch: refs/heads/branch-alerts-dev
Commit: 4a0a0edf6ca02ead0a7fc7b5ff22e9fd6d7b98e4
Parents: fa507bf
Author: Alex Antonenko <hi...@gmail.com>
Authored: Mon Sep 1 18:22:14 2014 +0300
Committer: Alex Antonenko <hi...@gmail.com>
Committed: Mon Sep 1 19:12:16 2014 +0300

----------------------------------------------------------------------
 .../main/resources/ui/app/controllers/slider_app_controller.js   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/4a0a0edf/contrib/views/slider/src/main/resources/ui/app/controllers/slider_app_controller.js
----------------------------------------------------------------------
diff --git a/contrib/views/slider/src/main/resources/ui/app/controllers/slider_app_controller.js b/contrib/views/slider/src/main/resources/ui/app/controllers/slider_app_controller.js
index 77bf0a0..f160383 100644
--- a/contrib/views/slider/src/main/resources/ui/app/controllers/slider_app_controller.js
+++ b/contrib/views/slider/src/main/resources/ui/app/controllers/slider_app_controller.js
@@ -37,7 +37,7 @@ App.SliderAppController = Ember.ObjectController.extend({
       status = this.get('model.status');
     if ('RUNNING' === status) {
       actions.pushObject({
-        title: 'Freeze',
+        title: 'Stop',
         action: 'freeze',
         confirm: true
       });
@@ -52,7 +52,7 @@ App.SliderAppController = Ember.ObjectController.extend({
     if ('FROZEN' === status) {
       actions.pushObjects([
         {
-          title: 'Thaw',
+          title: 'Start',
           action: 'thaw',
           confirm: false
         },