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 /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 'js')
| -rw-r--r-- | js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ $(window).on("load", function () { // CHECKS IF USER IS ON MOBILE
if( screen.width <= 480 ) {
- location.href = './mobile/';
+ location.href = '/mobile';
}
// BACKGROUND SPARKLES
|