fix typo in gutterLineHighlight option setter

This commit is contained in:
nightwing 2013-02-20 11:33:46 +04:00
commit f4b7fcc77d

View file

@ -1373,15 +1373,18 @@ config.defineOptions(VirtualRenderer.prototype, "renderer", {
set: function(shouldHighlight) {
if (!this.$gutterLineHighlight) {
this.$gutterLineHighlight = dom.createElement("div");
this.$gutterLineHighlight.className = "ace_gutter_active_line";
this.$gutterLineHighlight.className = "ace_gutter-active-line";
this.$gutter.appendChild(this.$gutterLineHighlight);
return;
}
this.$gutterLineHighlight.style.display = shouldHighlight ? "" : "none";
this.$cursorLayer.$pixelPos && this.$updateGutterLineHighlight();
// if cursorlayer have never been updated there's nothing on screen to update
if (this.$cursorLayer.$pixelPos)
this.$updateGutterLineHighlight();
},
initialValue: false
initialValue: false,
value: true
}
});