mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
remove query string from source
This commit is contained in:
parent
e35bda7b74
commit
6260db82e2
5 changed files with 11 additions and 107 deletions
|
@ -16,6 +16,12 @@ _define("fetch", function() {
|
|||
return fetch
|
||||
});
|
||||
|
||||
// query-string
|
||||
var query = require("query-string");
|
||||
_define("queryString", function() {
|
||||
return query;
|
||||
});
|
||||
|
||||
// flvjs
|
||||
var flvjs = require("flv.js/dist/flv").default;
|
||||
_define("flvjs", function() {
|
||||
|
@ -75,7 +81,7 @@ _define("sortable", function() {
|
|||
// webcomponents
|
||||
var webcomponents = require("webcomponents.js/webcomponents-lite");
|
||||
_define("webcomponents", function() {
|
||||
return webcomponents
|
||||
return webcomponents;
|
||||
});
|
||||
|
||||
// libjass
|
||||
|
@ -97,9 +103,9 @@ _define("material-icons", function() {
|
|||
return material_icons;
|
||||
});
|
||||
|
||||
var jellyfin_noto = require("jellyfin-noto");
|
||||
var noto = require("jellyfin-noto");
|
||||
_define("jellyfin-noto", function () {
|
||||
return jellyfin_noto;
|
||||
return noto;
|
||||
});
|
||||
|
||||
// page.js
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue