Merge branch 'ui/refactor' of github.com:ajaxorg/ace into ui/refactor
This commit is contained in:
commit
b06fca04e5
1 changed files with 4 additions and 0 deletions
|
|
@ -451,6 +451,10 @@ var VirtualRenderer = function(container, theme) {
|
|||
|
||||
this.$highlightGutterLine = false;
|
||||
this.setHighlightGutterLine = function(shouldHighlight) {
|
||||
// adding this element to gutter causes strange behavior on ie
|
||||
if (useragent.isIE)
|
||||
return;
|
||||
|
||||
if (this.$highlightGutterLine == shouldHighlight)
|
||||
return;
|
||||
this.$highlightGutterLine = shouldHighlight;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue