We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba64b16 commit 6429226Copy full SHA for 6429226
gwt-material/src/main/java/gwt/material/design/client/base/AbstractSideNav.java
@@ -242,7 +242,6 @@ public void load() {
242
243
@Override
244
public void unload() {
245
- $("#sidenav-overlay").remove();
246
activator = null;
247
}
248
@@ -412,6 +411,10 @@ protected void onClosed() {
412
411
protected void onOpening() {
413
open = true;
414
SideNavOpeningEvent.fire(this);
+ // Ensure to clean all the overlays attached before opening
415
+ // This will fixed multiple sidenav implementations with edge support.
416
+ $(".drag-target").remove();
417
+ $("#sidenav-overlay").each((param1, element) -> element.removeFromParent());
418
419
420
protected void onOpened() {
0 commit comments