Commit 616472ae by Szeberényi Imre

Update vm-console.js

parent c53db327
Pipeline #1393 passed with stage
in 0 seconds
...@@ -24,10 +24,10 @@ $(function() { ...@@ -24,10 +24,10 @@ $(function() {
}); });
$('#sendCtrlAltButton').click(function() { $('#sendCtrlAltButton').click(function() {
var fn = Number($('#chooseCtrlAlt').val()); var fn = Number($('#chooseCtrlAlt').val());
if (fn == 0) { if (fn === 0) {
rfb.sendCtrlAltDel(); i rfb.sendCtrlAltDel();
} else { } else {
rfb.sendCtrlAltCombine(fn-1); rfb.sendCtrlAltCombine(fn-1);
} }
return false;}); return false;});
// rfb.sendCtrlAltDel(); return false;}); // rfb.sendCtrlAltDel(); return false;});
......
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 sign in to comment