diff options
| author | s1nical <[email protected]> | 2019-08-11 01:15:32 -0700 |
|---|---|---|
| committer | s1nical <[email protected]> | 2019-08-11 01:15:32 -0700 |
| commit | 3275bc90c995568b7be72c10a2795b808ac6c92b (patch) | |
| tree | baa779da650e2063b99f251cee8680ab2b441132 /mobile/js | |
| parent | fixed favicon issue (diff) | |
| download | s1n.pw-admin-3275bc90c995568b7be72c10a2795b808ac6c92b.tar.xz s1n.pw-admin-3275bc90c995568b7be72c10a2795b808ac6c92b.zip | |
replace "./" with absolute paths, added mobile redirects, added path reference
Diffstat (limited to 'mobile/js')
| -rw-r--r-- | mobile/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/js/app.js b/mobile/js/app.js index df6b42b..ae22283 100644 --- a/mobile/js/app.js +++ b/mobile/js/app.js @@ -5,7 +5,7 @@ $(window).on("load", function () { // CHECKS IF USER IS ON DESKTOP if( screen.width > 480 ) { - location.href = '../index.html'; + location.href = '/index.html'; } // BACKGROUND SPARKLES |