Issue with Ace Editor and Webix!

Hello All,

I’m trying to set a font size in Ace using the getEditor() method and the setFontSize() method. After furiously console.logging away I’ve realized that the getEditor() method on line 36 does not appear to be working for whatever reason https://snippet.webix.com/cpn1mbqy . Does anybody have an explanation for why this could be happening?

Any help would be greatly appreciated, thanks!

if Ace script is not loaded yet then parameterless getEditor call will return undefined as in fact editor is not ready.
you need to call getEditor(true) to get Promise object and use editor in callback
https://docs.webix.com/desktop__text_editors.html#geteditor
https://snippet.webix.com/b0gkyk53

Intregal, you are the best! This is absolutely is the correct solution to my problem. Thank you very much!