Repository: cloudstack Updated Branches: refs/heads/master 4e1284147 -> fed5422c1
CLOUDSTACK-7777: UI > storage > volume > attach disk > virtual machine dropdown > remove unnecessary module check. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/fed5422c Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/fed5422c Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/fed5422c Branch: refs/heads/master Commit: fed5422c101ee4361dfce86929cb2fe917503d5c Parents: 4e12841 Author: Jessica Wang <jessicaw...@apache.org> Authored: Thu Oct 23 12:09:43 2014 -0700 Committer: Jessica Wang <jessicaw...@apache.org> Committed: Thu Oct 23 14:16:13 2014 -0700 ---------------------------------------------------------------------- ui/scripts/storage.js | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/fed5422c/ui/scripts/storage.js ---------------------------------------------------------------------- diff --git a/ui/scripts/storage.js b/ui/scripts/storage.js index ee8fa9d..c9ecc1d 100644 --- a/ui/scripts/storage.js +++ b/ui/scripts/storage.js @@ -904,11 +904,6 @@ hypervisor: args.context.volumes[0].hypervisor }); } - - var volumeDrEnabled = false; - if (isModuleIncluded("dr")) { - volumeDrEnabled = cloudStack.dr.sharedFunctions.isVolumeDrEnabled(args.context.volumes[0]); - } $(['Running', 'Stopped']).each(function() { $.ajax({ @@ -919,21 +914,11 @@ async: false, success: function(json) { var instanceObjs = json.listvirtualmachinesresponse.virtualmachine; - $(instanceObjs).each(function() { - if (isModuleIncluded("dr")) { - var vmDrEnabled = cloudStack.dr.sharedFunctions.isVmDrEnabled(this); - if (vmDrEnabled == volumeDrEnabled) { + $(instanceObjs).each(function() { items.push({ id: this.id, description: this.displayname ? this.displayname : this.name - }); - } - } else { - items.push({ - id: this.id, - description: this.displayname ? this.displayname : this.name - }); - } + }); }); } });