Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-843 72b0a94b6 -> 67c9aa60e


# IGNITE-843 Added name to save message.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/cb219aba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/cb219aba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/cb219aba

Branch: refs/heads/ignite-843
Commit: cb219abada2a5b104c3794c322c4d7d0a9c1696b
Parents: 2bbaa68
Author: AKuznetsov <akuznet...@gridgain.com>
Authored: Fri Jun 26 18:13:17 2015 +0700
Committer: AKuznetsov <akuznet...@gridgain.com>
Committed: Fri Jun 26 18:13:17 2015 +0700

----------------------------------------------------------------------
 modules/webconfig/nodejs/public/javascripts/controllers/caches.js  | 2 +-
 .../webconfig/nodejs/public/javascripts/controllers/clusters.js    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/cb219aba/modules/webconfig/nodejs/public/javascripts/controllers/caches.js
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/public/javascripts/controllers/caches.js 
b/modules/webconfig/nodejs/public/javascripts/controllers/caches.js
index 9815887..cb15ae9 100644
--- a/modules/webconfig/nodejs/public/javascripts/controllers/caches.js
+++ b/modules/webconfig/nodejs/public/javascripts/controllers/caches.js
@@ -154,7 +154,7 @@ configuratorModule.controller('cachesController', 
['$scope', '$alert', '$http',
 
                     $scope.selectItem(item);
 
-                    $alert({type: "success", title: 'Cache saved.', duration: 
2, container: '#save-btn'});
+                    $alert({type: "success", title: 'Cache "' + item.name  + 
'" saved.', duration: 2, container: '#save-btn'});
                 })
                 .error(function (errorMessage) {
                     $alert({title: errorMessage});

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/cb219aba/modules/webconfig/nodejs/public/javascripts/controllers/clusters.js
----------------------------------------------------------------------
diff --git 
a/modules/webconfig/nodejs/public/javascripts/controllers/clusters.js 
b/modules/webconfig/nodejs/public/javascripts/controllers/clusters.js
index 75de767..5b23291 100644
--- a/modules/webconfig/nodejs/public/javascripts/controllers/clusters.js
+++ b/modules/webconfig/nodejs/public/javascripts/controllers/clusters.js
@@ -155,7 +155,7 @@ configuratorModule.controller('clustersController', 
['$scope', '$alert', '$http'
 
                     $scope.selectItem(item);
 
-                    $alert({type: "success", title: 'Cluster saved.', 
duration: 2, container: '#save-btn'});
+                    $alert({type: "success", title: 'Cluster "' + item.name  + 
'" saved.', duration: 2, container: '#save-btn'});
                 })
                 .error(function(errorMessage) {
                     $alert({title: errorMessage});

Reply via email to