1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

move remaining libraries to new folder

This commit is contained in:
dkanada 2019-11-11 01:47:28 +09:00
parent 105891b409
commit b124427039
20 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
//TODO: (vitorsemeano) modify this lines for webpack //TODO: (vitorsemeano) modify this lines for webpack
define(["bower_components/apiclient/apiclientcore", "localassetmanager"], function(ApiClient, localassetmanager) { define(["libraries/apiclient/apiclientcore", "localassetmanager"], function(ApiClient, localassetmanager) {
"use strict"; "use strict";
if ("cordova" !== window.appMode && "android" !== window.appMode) { if ("cordova" !== window.appMode && "android" !== window.appMode) {

View file

@ -308,7 +308,7 @@ var AppInfo = {};
} }
function getBowerPath() { function getBowerPath() {
return "bower_components"; return "libraries";
} }
function getComponentsPath() { function getComponentsPath() {
@ -747,7 +747,7 @@ var AppInfo = {};
define("useractionrepository", [bowerPath + "/apiclient/sync/useractionrepository"], returnFirstDependency); define("useractionrepository", [bowerPath + "/apiclient/sync/useractionrepository"], returnFirstDependency);
// also pull out these libs // also pull out these libs
define("page", [bowerPath + "/page"], returnFirstDependency); define("page", [bowerPath + "/pagejs/page"], returnFirstDependency);
define("fetch", ["fetch"], returnFirstDependency); define("fetch", ["fetch"], returnFirstDependency);
define("queryString", [bowerPath + "/query-string/index"], function () { define("queryString", [bowerPath + "/query-string/index"], function () {
return queryString; return queryString;