Repository: incubator-ignite Updated Branches: refs/heads/ignite-843 be5e4bf66 -> d7125f6a3
IGNITE-843 Fixed message text. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/d7125f6a Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/d7125f6a Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/d7125f6a Branch: refs/heads/ignite-843 Commit: d7125f6a39b1793e59166a5aa52aa6e1edc5bc89 Parents: be5e4bf Author: AKuznetsov <akuznet...@gridgain.com> Authored: Thu Jul 9 17:33:04 2015 +0700 Committer: AKuznetsov <akuznet...@gridgain.com> Committed: Thu Jul 9 17:33:04 2015 +0700 ---------------------------------------------------------------------- modules/web-control-center/nodejs/controllers/admin-controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/d7125f6a/modules/web-control-center/nodejs/controllers/admin-controller.js ---------------------------------------------------------------------- diff --git a/modules/web-control-center/nodejs/controllers/admin-controller.js b/modules/web-control-center/nodejs/controllers/admin-controller.js index 425ec3e..8cff86b 100644 --- a/modules/web-control-center/nodejs/controllers/admin-controller.js +++ b/modules/web-control-center/nodejs/controllers/admin-controller.js @@ -31,7 +31,7 @@ controlCenterModule.controller('adminController', ['$scope', '$alert', '$http', reload(); $scope.removeUser = function (user) { - if (!confirm("You are going to delete user " + user.username + ". Please, confirm it.")) + if (!confirm("Are you sure you want to delete user " + user.username + "?")) return false; $http.post('admin/remove', {userId: user._id}).success(