diff --git a/bower.json b/bower.json index c7aa76f4fa..c321543894 100644 --- a/bower.json +++ b/bower.json @@ -1,5 +1,5 @@ { "name": "xterm.js", - "version": "0.8", + "version": "0.9", "ignore": ["demo", "docs", "test", ".gitignore"] } diff --git a/src/xterm.js b/src/xterm.js index bddef3c920..2c9328b735 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -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);