Remove debug sendCtrlC function.

This commit is contained in:
Joel Martin 2010-06-16 09:48:49 -05:00
parent 160fabf65c
commit f755ca9631
1 changed files with 0 additions and 12 deletions

View File

@ -114,18 +114,6 @@ sendCtrlAltDel: function() {
RFB.send_array(arr);
},
sendCtrlC: function() {
if (RFB.state !== "normal") { return false; }
console.log("Sending Ctrl-C");
var arr = [];
arr = arr.concat(RFB.keyEvent(0xFFE3, 1)); // Control
arr = arr.concat(RFB.keyEvent(67, 1)); // C
arr = arr.concat(RFB.keyEvent(67, 0)); // C
arr = arr.concat(RFB.keyEvent(0xFFE3, 0)); // Control
arr = arr.concat(RFB.fbUpdateRequest(1));
RFB.send_array(arr);
},
load: function () {
var i;
//console.log(">> load");