Commit f9bc8d19 authored by Dietmar Maurer's avatar Dietmar Maurer

remove debug message

parent a454cbd7
......@@ -140,5 +140,28 @@ Ext.define('PVE.window.Snapshot', {
});
me.callParent();
if (!me.snapname) {
return;
}
// else load data
PVE.Utils.API2Request({
url: '/nodes/' + me.nodename + '/qemu/' + me.vmid + "/snapshot/" +
me.snapname + '/config',
waitMsgTarget: me,
method: 'GET',
failure: function(response, opts) {
Ext.Msg.alert('Error', response.htmlStatus);
me.close();
},
success: function(response, options) {
var data = response.result.data;
console.dir(data);
}
});
}
});
......@@ -17,7 +17,6 @@ Ext.define('PVE.qemu.SnapshotTree', {
return -1;
}
console.log("SORT " + v1 + " " + v2);
return (v1 > v2 ? 1 : (v1 < v2 ? -1 : 0));
},
......
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