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

update translations

This commit is contained in:
Luke Pulverenti 2014-08-26 23:25:39 -04:00
parent 6350971623
commit 623859c2f8
2 changed files with 4 additions and 4 deletions

View file

@ -4,11 +4,11 @@
var val = enabled ? '1' : '';
store.setItem('displaymirror', val);
store.setItem('displaymirror-' + Dashboard.getCurrentUserId(), val);
}
function isMirrorModeEnabled() {
return (store.getItem('displaymirror') || '') == '1';
return (store.getItem('displaymirror-' + Dashboard.getCurrentUserId()) || '') == '1';
}
var currentDisplayInfo;