-
-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Niels van Velzen <[email protected]>
- Loading branch information
1 parent
7dbf085
commit d334116
Showing
4 changed files
with
23 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
(() => { | ||
const scripts = [ | ||
'/native/nativeshell.js', | ||
'/native/EventEmitter.js', | ||
document.currentScript.src.concat('?', Date.now()) | ||
]; | ||
for (const script of scripts) { | ||
const scriptElement = document.createElement('script'); | ||
scriptElement.src = script; | ||
scriptElement.charset = 'utf-8'; | ||
scriptElement.setAttribute('defer', ''); | ||
document.head.appendChild(scriptElement); | ||
} | ||
document.currentScript.remove(); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 0 additions & 39 deletions
39
app/src/main/java/org/jellyfin/mobile/utils/WebAppUtils.kt
This file was deleted.
Oops, something went wrong.