From 19d24b1eb6d50dfe0257c2a4452f1f197de50f0d Mon Sep 17 00:00:00 2001 From: Oj Date: Sun, 3 Apr 2022 18:40:20 +0100 Subject: [PATCH] [Splash] Move HTML to remote --- src/splash/index.html | 131 ------------------------------------------ src/splash/index.js | 2 +- 2 files changed, 1 insertion(+), 132 deletions(-) delete mode 100644 src/splash/index.html diff --git a/src/splash/index.html b/src/splash/index.html deleted file mode 100644 index dd5a04c..0000000 --- a/src/splash/index.html +++ /dev/null @@ -1,131 +0,0 @@ - - -
Starting...
- -
- -
- - - - \ No newline at end of file diff --git a/src/splash/index.js b/src/splash/index.js index 93a4efd..723778a 100644 --- a/src/splash/index.js +++ b/src/splash/index.js @@ -108,7 +108,7 @@ const launchSplashWindow = (startMinimized) => { }); if (!startMinimized) win.once('ready-to-show', () => win.show()); - win.loadURL('file:///' + join(__dirname, 'index.html')); + win.loadURL('https://cdn.openasar.dev/splash'); };