mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
store the new options to fix handleSize undefined
This commit is contained in:
parent
7546b05297
commit
be609351ef
1 changed files with 2 additions and 1 deletions
|
@ -334,7 +334,8 @@ class NavigationDrawer {
|
||||||
}
|
}
|
||||||
|
|
||||||
initialize() {
|
initialize() {
|
||||||
const options = Object.assign(this.defaults, this.options || {});
|
const options = Object.assign({}, this.defaults, this.options || {});
|
||||||
|
this.options = options;
|
||||||
|
|
||||||
if (browser.edge) {
|
if (browser.edge) {
|
||||||
options.disableEdgeSwipe = true;
|
options.disableEdgeSwipe = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue