Commit 1a6c1876 authored by Alexandre Derumier's avatar Alexandre Derumier Committed by Dietmar Maurer

add clone vm option in qemu vm right click menu

fixme: add a new icon
Signed-off-by: 's avatarAlexandre Derumier <aderumier@odiso.com>
parent c4fa90fb
......@@ -77,6 +77,18 @@ Ext.define('PVE.qemu.CmdMenu', {
});
}
},
{
text: gettext('Clone To VM'),
icon: '/pve2/images/forward.png',
handler: function() {
var win = Ext.create('PVE.window.Clone', {
snapname: 'current',
nodename: nodename,
vmid: vmid,
});
win.show();
}
},
{
text: gettext('Console'),
icon: '/pve2/images/display.png',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment