multiple fixes and otimizations
This commit is contained in:
@@ -152,9 +152,9 @@ export function showLoadingMsg() {
|
||||
|
||||
export function confirm(message, title, callback) {
|
||||
baseConfirm(message, title).then(function() {
|
||||
callback(!0);
|
||||
callback(true);
|
||||
}).catch(function() {
|
||||
callback(!1);
|
||||
callback(false);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -143,7 +143,6 @@ import { Events } from 'jellyfin-apiclient';
|
||||
return Promise.all(promises);
|
||||
}
|
||||
|
||||
const cacheParam = new Date().getTime();
|
||||
function loadTranslation(translations, lang) {
|
||||
lang = normalizeLocaleName(lang);
|
||||
let filtered = translations.filter(function (t) {
|
||||
@@ -156,7 +155,6 @@ import { Events } from 'jellyfin-apiclient';
|
||||
});
|
||||
}
|
||||
|
||||
//import('../strings/')
|
||||
return new Promise(function (resolve, reject) {
|
||||
if (!filtered.length) {
|
||||
resolve();
|
||||
|
||||
@@ -978,8 +978,6 @@ import ServerConnections from '../components/ServerConnections';
|
||||
updateLibraryNavLinks(page);
|
||||
});
|
||||
|
||||
renderHeader();
|
||||
|
||||
Events.on(ServerConnections, 'localusersignedin', function (e, user) {
|
||||
const currentApiClient = ServerConnections.getApiClient(user.ServerId);
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import inputManager from './inputManager';
|
||||
import focusManager from '../components/focusManager';
|
||||
import browser from '../scripts/browser';
|
||||
|
||||
Reference in New Issue
Block a user