don't call ace_getInInternationalComposition if editor is not fully loaded

This commit is contained in:
webzwo0i 2014-01-28 14:07:26 +01:00
parent b6f354a2de
commit 3f31445abf

View file

@ -124,6 +124,7 @@ function Ace2Editor()
editor.getInInternationalComposition = function()
{
if (!loaded) return false;
return info.ace_getInInternationalComposition();
};