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

remove fingerprintjs

This commit is contained in:
Luke Pulverenti 2016-08-19 18:56:32 -04:00
parent c546f03906
commit 1846f1afcf
16 changed files with 24 additions and 1593 deletions

View file

@ -1,4 +1,4 @@
define(['loading', 'apphost', 'globalize', 'syncJobList', 'events', 'localsync', 'emby-button', 'paper-icon-button-light'], function (loading, appHost, globalize, syncJobList, events) {
define(['loading', 'apphost', 'globalize', 'syncJobList', 'events', 'localsync', 'emby-button', 'paper-icon-button-light'], function (loading, appHost, globalize, syncJobList, events, localSync) {
function initSupporterInfo(view, params) {
@ -38,7 +38,7 @@
if (isLocalSyncManagement()) {
var status = LocalSync.getSyncStatus();
var status = localSync.getSyncStatus();
page.querySelector('.labelSyncStatus').innerHTML = Globalize.translate('LabelLocalSyncStatusValue', status);
if (status == 'Active') {
@ -58,7 +58,7 @@
function syncNow(page) {
LocalSync.sync();
localSync.sync();
require(['toast'], function (toast) {
toast(Globalize.translate('MessageSyncStarted'));
});