@mxtommy/kip 3.0.0-alpha.48 → 3.0.0-alpha.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/main.js +2 -2
- package/public/main.js.map +1 -1
package/package.json
CHANGED
package/public/main.js
CHANGED
|
@@ -145597,8 +145597,8 @@ var AppComponent = class _AppComponent {
|
|
|
145597
145597
|
Howler.autoSuspend = false;
|
|
145598
145598
|
}
|
|
145599
145599
|
});
|
|
145600
|
-
window.addEventListener("openLeftSidenav", this.onSwipeLeft);
|
|
145601
|
-
window.addEventListener("openRightSidenav", this.onSwipeRight);
|
|
145600
|
+
window.addEventListener("openLeftSidenav", this.onSwipeLeft.bind(this));
|
|
145601
|
+
window.addEventListener("openRightSidenav", this.onSwipeRight.bind(this));
|
|
145602
145602
|
}
|
|
145603
145603
|
menuClosed() {
|
|
145604
145604
|
if (this.notificationsPresent) {
|