fix trailing whitespaces

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2016-04-05 11:31:48 +02:00 committed by Dietmar Maurer
parent ce8dac510e
commit 9bd6cd80de
2 changed files with 6 additions and 7 deletions

View File

@ -13,7 +13,6 @@ Ext.define('PVE.lxc.CmdMenu', {
if (!vmid) {
throw "no CT ID specified";
}
var vmname = me.pveSelNode.data.name;
var vm_command = function(cmd, params) {
@ -54,7 +53,7 @@ Ext.define('PVE.lxc.CmdMenu', {
vm_command('start');
}
},
{
{
text: gettext('Migrate'),
iconCls: 'fa fa-fw fa-send-o',
handler: function() {
@ -76,7 +75,7 @@ Ext.define('PVE.lxc.CmdMenu', {
if (btn !== 'yes') {
return;
}
vm_command('suspend');
});
}
@ -102,7 +101,7 @@ Ext.define('PVE.lxc.CmdMenu', {
vm_command('shutdown');
});
}
}
},
{
text: gettext('Stop'),

View File

@ -54,7 +54,7 @@ Ext.define('PVE.qemu.CmdMenu', {
vm_command('start');
}
},
{
{
text: gettext('Migrate'),
iconCls: 'fa fa-fw fa-send-o',
handler: function() {
@ -101,7 +101,7 @@ Ext.define('PVE.qemu.CmdMenu', {
vm_command('shutdown');
});
}
}
},
{
text: gettext('Stop'),
@ -115,7 +115,7 @@ Ext.define('PVE.qemu.CmdMenu', {
}
vm_command("stop");
});
});
}
},
{