Increase sendRawText() wait hack to 400ms

I know this adds another 200ms to page load times, but it prevents pages
with a lot of text not rendering their text. Obviously better to just
fix the original bug.
pull/114/head
Thomas Buckley-Houston 2018-07-11 16:49:59 +08:00
rodzic be098c0673
commit 3c41974ce0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -37,7 +37,7 @@ export default class extends utils.mixins(CommonMixin, SerialiseMixin) {
setTimeout(() => {
this.buildFormattedText();
this._sendRawText();
}, 200);
}, 400);
}
buildFormattedText() {