Removed debugging stuff

Bumped bower version to 0.9
This commit is contained in:
paris
2014-04-10 16:04:59 +00:00
parent 9bd2a1c202
commit 0b603952c3
2 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"name": "xterm.js",
"version": "0.8",
"version": "0.9",
"ignore": ["demo", "docs", "test", ".gitignore"]
}
+1 -5
View File
@@ -568,9 +568,7 @@ Terminal.prototype.open = function(parent) {
on(this.element, 'mouseup', function() {
var selection = document.getSelection();
if (selection.type == 'Range') {
console.log(selection);
} else {
if (selection.type != 'Range') {
self.focus();
}
});
@@ -2361,7 +2359,6 @@ Terminal.prototype.keyDown = function(ev) {
this.emit('keydown', ev);
this.emit('key', key, ev);
console.log('keydown');
this.showCursor();
this.handler(key);
@@ -2403,7 +2400,6 @@ Terminal.prototype.keyPress = function(ev) {
this.emit('keypress', key, ev);
this.emit('key', key, ev);
console.log('keypress');
this.showCursor();
this.handler(key);