From c6267296ec03db24ff40959ef58eedcec904c39b Mon Sep 17 00:00:00 2001 From: luixal Date: Tue, 23 Feb 2021 20:50:32 +0100 Subject: Changes relative paths to hash. Avoids problems with #8 --- src/App.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/App.vue') diff --git a/src/App.vue b/src/App.vue index 03970ed..cd1d9ba 100644 --- a/src/App.vue +++ b/src/App.vue @@ -13,7 +13,7 @@
@@ -151,11 +151,12 @@ export default { created: async function () { const defaults = jsyaml.load(defaultConfig); let config; + window.onhashchange = function() { location.reload(); }; try { config = await this.getConfig(); - const path = (window.location.pathname != '/') ? window.location.pathname : null; + const path = (window.location.hash.substring(1) != '') ? window.location.hash.substring(1) : null; if (path) { - let pathConfig = await this.getConfig(`assets${path}.yml`); // the slash (/) is included in the pathname + let pathConfig = await this.getConfig(`assets/${path}.yml`); // the slash (/) is included in the pathname for (const prop in pathConfig) config[prop] = pathConfig[prop]; } // config = await this.getConfig(path ? `assets/${path}.yml` : null); -- cgit v1.2.3