editor render method should not be called if request is pending (#13858)

This commit is contained in:
Peter Pisljar 2017-09-12 11:59:11 +02:00 committed by GitHub
parent 5022d776df
commit 1615d9c5ca

View file

@ -43,7 +43,9 @@ uiModules
editor.destroy();
});
$timeout(() => { renderFunction(); });
if (!vis.initialized) {
$timeout(() => { renderFunction(); });
}
}
};
});