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() {
|
||||
const options = Object.assign(this.defaults, this.options || {});
|
||||
const options = Object.assign({}, this.defaults, this.options || {});
|
||||
this.options = options;
|
||||
|
||||
if (browser.edge) {
|
||||
options.disableEdgeSwipe = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue