Repository: cloudstack Updated Branches: refs/heads/master 320125125 -> 97768b265
CLOUDSTACK-7668: UI > When UI is loaded the first time, sometimes a blank screen instead of a login screen shows > fix it by declaring the variables beforehand. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/97768b26 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/97768b26 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/97768b26 Branch: refs/heads/master Commit: 97768b2657839d9daa1e36719c5f0714f9ac2727 Parents: 3201251 Author: Jessica Wang <[email protected]> Authored: Thu Oct 2 17:07:44 2014 -0700 Committer: Jessica Wang <[email protected]> Committed: Thu Oct 2 17:07:57 2014 -0700 ---------------------------------------------------------------------- ui/scripts/sharedFunctions.js | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/97768b26/ui/scripts/sharedFunctions.js ---------------------------------------------------------------------- diff --git a/ui/scripts/sharedFunctions.js b/ui/scripts/sharedFunctions.js index 457548c..5597a7b 100644 --- a/ui/scripts/sharedFunctions.js +++ b/ui/scripts/sharedFunctions.js @@ -1455,6 +1455,8 @@ var processPropertiesInImagestoreObject = function(jsonObj) { return vmName; } +var dictionary = {}, dictionary2 = {}; //for globalization + var timezoneMap = new Object(); timezoneMap["Etc/GMT+12"] = "Etc/GMT+12 [GMT-12:00]"; timezoneMap["Etc/GMT+11"] = "Etc/GMT+11 [GMT-11:00]";
