You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2013/11/01 00:55:21 UTC

git commit: updated refs/heads/master to 61b7708

Updated Branches:
  refs/heads/master c5bec6b33 -> 61b77086f


VM snapshot action: add quiescevm option as checkbox


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

Branch: refs/heads/master
Commit: 61b77086f4f2ef3810400ada38f1efffbaf57a42
Parents: c5bec6b
Author: Brian Federle <br...@citrix.com>
Authored: Thu Oct 31 16:54:35 2013 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Thu Oct 31 16:55:15 2013 -0700

----------------------------------------------------------------------
 ui/scripts/instances.js | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/61b77086/ui/scripts/instances.js
----------------------------------------------------------------------
diff --git a/ui/scripts/instances.js b/ui/scripts/instances.js
index 625be51..71c5a32 100644
--- a/ui/scripts/instances.js
+++ b/ui/scripts/instances.js
@@ -41,6 +41,11 @@
                         label: 'label.vmsnapshot.memory',
                         isBoolean: true,
                         isChecked: false
+                    },
+                    quiescevm: {
+                        label: 'Quiesce VM',
+                        isBoolean: true,
+                        isChecked: false
                     }
                 }
             },
@@ -50,6 +55,7 @@
                 $(instances).map(function(index, instance) {
                     var array1 = [];
                     array1.push("&snapshotmemory=" + (args.data.snapshotMemory == "on"));
+                    array1.push("&quiescevm=" + (args.data.quiescevm == "on"));
                     var displayname = args.data.name;
                     if (displayname != null && displayname.length > 0) {
                         array1.push("&name=" + todb(displayname));