This commit is contained in:
Fabian Jakobs 2011-01-27 18:24:41 +01:00
commit ae810194ac

View file

@ -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();
};