From 22789ab4c4c70a8fd1eccddb1418e2f6033a7d6d Mon Sep 17 00:00:00 2001 From: xenophile <115324321+xenophile127@users.noreply.github.com> Date: Thu, 15 Aug 2024 18:26:58 -0700 Subject: [PATCH] Change base path for JS to explicitly point to GitHub Pages. Attempting to figure out how to host the patcher in a separate repo. --- rom-patcher-js/RomPatcher.webapp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rom-patcher-js/RomPatcher.webapp.js b/rom-patcher-js/RomPatcher.webapp.js index c19be11..80803ad 100644 --- a/rom-patcher-js/RomPatcher.webapp.js +++ b/rom-patcher-js/RomPatcher.webapp.js @@ -35,7 +35,7 @@ - switch to ES6 classes and modules? */ -const ROM_PATCHER_JS_PATH = './rom-patcher-js/'; +const ROM_PATCHER_JS_PATH = 'https://xenophile127.github.io/RomPatcher.js/rom-patcher-js/'; var RomPatcherWeb = (function () { const SCRIPT_DEPENDENCIES = [ @@ -2013,4 +2013,4 @@ const ROM_PATCHER_LOCALE = { 'Invalid patch file': '無效的patch檔', 'Using big files is not recommended': '不建議使用大檔。' } -}; \ No newline at end of file +};