diff --git a/lib/ace/virtual_renderer.js b/lib/ace/virtual_renderer.js index c5690a51..85f59de9 100644 --- a/lib/ace/virtual_renderer.js +++ b/lib/ace/virtual_renderer.js @@ -625,7 +625,6 @@ var VirtualRenderer = function(container, theme) { }; this.showComposition = function(position) { - console.log("show composition") if (!this.$composition) { this.$composition = document.createElement("div"); this.$composition.className = "ace_composition"; @@ -639,7 +638,6 @@ var VirtualRenderer = function(container, theme) { style.top = pos.top + "px"; style.left = (pos.left + this.$padding) + "px"; style.height = this.lineHeight + "px"; - //style.width = this.characterWidth + "px"; this.hideCursor(); };