You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by je...@apache.org on 2014/06/06 22:30:40 UTC

[2/2] git commit: updated refs/heads/master to ea196a4

CLOUDSTACK-6858: UI - remove obsolete variable rootAccountId whose value is no longer 1.


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

Branch: refs/heads/master
Commit: ea196a4ffcf9de33f8486dfbddc08e0040b8bb2c
Parents: a8a853e
Author: Jessica Wang <je...@apache.org>
Authored: Fri Jun 6 13:26:53 2014 -0700
Committer: Jessica Wang <je...@apache.org>
Committed: Fri Jun 6 13:30:13 2014 -0700

----------------------------------------------------------------------
 ui/scripts/sharedFunctions.js | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/ea196a4f/ui/scripts/sharedFunctions.js
----------------------------------------------------------------------
diff --git a/ui/scripts/sharedFunctions.js b/ui/scripts/sharedFunctions.js
index bec0336..445351a 100644
--- a/ui/scripts/sharedFunctions.js
+++ b/ui/scripts/sharedFunctions.js
@@ -51,8 +51,6 @@ var pageSize = 20;
 
 var drModuleIncluded = false;
 
-var rootAccountId = 1;
-
 //async action
 var pollAsyncJobResult = function(args) {
     $.ajax({
@@ -1183,10 +1181,7 @@ var addExtraPropertiesToGuestNetworkObject = function(jsonObj) {
     jsonObj.networkofferingidText = jsonObj.networkofferingid;
 
     if (jsonObj.acltype == "Domain") {
-        if (jsonObj.domainid == rootAccountId)
-            jsonObj.scope = "All";
-        else
-            jsonObj.scope = "Domain (" + jsonObj.domain + ")";
+        jsonObj.scope = "Domain (" + jsonObj.domain + ")";
     } else if (jsonObj.acltype == "Account") {
         if (jsonObj.project != null)
             jsonObj.scope = "Account (" + jsonObj.domain + ", " + jsonObj.project + ")";