mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Additional fixes to get jf-web loading in webOS 3.0 emulator.
Can't seem to get any audio/video playing in the emulator, so I'm not sure if the emulator supports multimedia playback.
This commit is contained in:
parent
747201a6c7
commit
3167c7dbb9
2 changed files with 6 additions and 1 deletions
2
src/bower_components/alameda/alameda.js
vendored
2
src/bower_components/alameda/alameda.js
vendored
|
@ -266,7 +266,7 @@ var requirejs, require, define;
|
|||
trackedErrors = obj(),
|
||||
urlFetched = obj(),
|
||||
bundlesMap = obj(),
|
||||
asyncResolve = Promise.resolve();
|
||||
asyncResolve = Promise.resolve(undefined);
|
||||
return load = "function" == typeof importScripts ? function(map) {
|
||||
var url = map.url;
|
||||
urlFetched[url] || (urlFetched[url] = !0, getDefer(map.id), importScripts(url), takeQueue(map.id))
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
define(['browser', 'dialog', 'globalize'], function (browser, dialog, globalize) {
|
||||
'use strict';
|
||||
|
||||
function replaceAll(originalString, strReplace, strWith) {
|
||||
var reg = new RegExp(strReplace, 'ig');
|
||||
return originalString.replace(reg, strWith);
|
||||
}
|
||||
|
||||
return function (text, title) {
|
||||
|
||||
var options;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue