Bugfix for this being wrong in editorInfo.ace_performDocumentApplyAttributesToRange
parent
7cf4510bf5
commit
3a62c6d2ab
|
@ -5401,7 +5401,9 @@ function Ace2Inner(){
|
|||
|
||||
// Init documentAttributeManager
|
||||
documentAttributeManager = new AttributeManager(rep, performDocumentApplyChangeset);
|
||||
editorInfo.ace_performDocumentApplyAttributesToRange = documentAttributeManager.setAttributesOnRange;
|
||||
editorInfo.ace_performDocumentApplyAttributesToRange = function () {
|
||||
return documentAttributeManager.setAttributesOnRange.apply(documentAttributeManager, arguments);
|
||||
};
|
||||
|
||||
$(document).ready(function(){
|
||||
doc = document; // defined as a var in scope outside
|
||||
|
|
Loading…
Reference in New Issue