move print margin below the text

This commit is contained in:
Fabian Jakobs 2010-10-04 16:13:11 +02:00
commit 355f26e2c8

View file

@ -235,7 +235,7 @@ var VirtualRenderer = function(container, theme) {
if (!this.$printMarginEl) {
this.$printMarginEl = document.createElement("div");
this.$printMarginEl.className = "ace_printMargin";
this.content.insertBefore(this.$printMarginEl, this.$cursorLayer.element);
this.content.insertBefore(this.$printMarginEl, this.$textLayer.element);
}
var style = this.$printMarginEl.style;