diff options
author | Devine Lu Linvega <[email protected]> | 2019-04-19 20:45:05 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-04-19 20:45:05 +0900 |
commit | 0ff0b9123c31a1132fe76755cff3ec0c85931173 (patch) | |
tree | b1943542d9a4e64ee93109f912c60b67822f8fc5 | |
parent | 6bd303d017205fc43cf8f2093262bae2568c2907 (diff) | |
download | Orca-0ff0b9123c31a1132fe76755cff3ec0c85931173.tar.gz Orca-0ff0b9123c31a1132fe76755cff3ec0c85931173.zip |
Wait for resources to be done loading..
-rw-r--r-- | desktop/sources/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/index.html b/desktop/sources/index.html index ef9da75..2ec6159 100644 --- a/desktop/sources/index.html +++ b/desktop/sources/index.html @@ -70,7 +70,7 @@ terminal.controller.commit() - terminal.start() + window.addEventListener('load', () => { terminal.start(); }) </script> </body> |