diff --git a/demo/www/app/plugin/plugin.js b/demo/www/app/plugin/plugin.js index a514cf477..fa63772be 100644 --- a/demo/www/app/plugin/plugin.js +++ b/demo/www/app/plugin/plugin.js @@ -134,7 +134,9 @@ export class Plugin { this.content.value = this.content.items.join(); - this.textArea.scrollTop = this.textArea.scrollHeight; + setTimeout(() => { + this.textArea.scrollTop = this.textArea.scrollHeight; + }) } doMethod(method) {