@exmg/exm-navigation 1.1.25 → 1.1.27

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.
@@ -46,12 +46,10 @@ export class ExmNavigationBase extends MediaQueries(ExmgElement) {
46
46
  */
47
47
  this.navigationHasSubmenu = {};
48
48
  /**
49
- * Listen to popState changes. When the event has a state, the browser navigation buttons have been used and we have to update the path
49
+ * Listen to popState changes.
50
50
  */
51
- window.addEventListener('popstate', (event) => {
52
- if (event.state) {
53
- this.setPath();
54
- }
51
+ window.addEventListener('popstate', () => {
52
+ this.setPath();
55
53
  });
56
54
  }
57
55
  /**
@@ -42,7 +42,7 @@ export const style = css `
42
42
  .content {
43
43
  grid-area: 1/3/2/4;
44
44
  z-index: 1;
45
- overflow: scroll;
45
+ overflow: auto;
46
46
  }
47
47
 
48
48
  exm-navigation-drawer {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exmg/exm-navigation",
3
- "version": "1.1.25",
3
+ "version": "1.1.27",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -47,5 +47,5 @@
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
- "gitHead": "e0e168ccfc3d87bcf73b42fe244bba2dd40fc926"
50
+ "gitHead": "4e9a663fa89175607c2cdffaf3611cc2125939f8"
51
51
  }