Merge pull request #2074 from webzwo0i/fix-disconnect-on-new-changes-in-padinitialization

don't call ace_getInInternationalComposition if editor is not fully load...
pull/2101/head
Marcel Klehr 2014-02-26 22:52:30 +01:00
commit af50001769
1 changed files with 1 additions and 0 deletions

View File

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