Repository: cloudstack Updated Branches: refs/heads/master 5049dd0bf -> d80f6a8d4
CLOUDSTACK-6694: update related comment after Refactor 'assign vm' action into function Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/d80f6a8d Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/d80f6a8d Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/d80f6a8d Branch: refs/heads/master Commit: d80f6a8d4ad871ecd73bcd64d13bdfa905099419 Parents: 5049dd0 Author: Jessica Wang <[email protected]> Authored: Mon Sep 8 12:06:51 2014 -0700 Committer: Jessica Wang <[email protected]> Committed: Mon Sep 8 12:07:04 2014 -0700 ---------------------------------------------------------------------- ui/scripts/vpc.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/d80f6a8d/ui/scripts/vpc.js ---------------------------------------------------------------------- diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index 10bd703..786cb26 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -126,7 +126,11 @@ }); } }), - action: function(args) { //UI > Network menu > VPC section > select and configure a VPC from listing > select an internal LB tier > click Internal LB > select an internal LB rule from listing > Details tab > click Assigned VMs tab > click Assign VMs button > Select VM dailog + action: function(args) { + /* + * path 1: Network > VPC (list) > click "Configure" > pick an internal LB tier > click "Internal LB" (list) > click on a grid row (Details tab) > click "Assign VMs" tab > click Assign VMs" button on top of list + * path 2: Network > VPC (list) > click "Configure" > pick an internal LB tier > click "Internal LB" (list) > "QuickView" on a grid row > click "Assign VMs" button in QuickView + */ var $rows = $(':ui-dialog .list-view tbody tr'); var vms = args.context.instances;
