@progressive-development/pd-page 0.0.2 → 0.0.3
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/src/PdMenu.js +5 -7
package/package.json
CHANGED
package/src/PdMenu.js
CHANGED
|
@@ -156,13 +156,11 @@ export class PdMenu extends LitElement {
|
|
|
156
156
|
render() {
|
|
157
157
|
return html`
|
|
158
158
|
<ul>
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
`
|
|
165
|
-
: ''}
|
|
159
|
+
|
|
160
|
+
<li @click="${PdMenu._scrollToTop}">
|
|
161
|
+
<slot id="slotLogo"></slot>
|
|
162
|
+
</li>
|
|
163
|
+
|
|
166
164
|
${this.menuItems.map(
|
|
167
165
|
(item, index) => html`
|
|
168
166
|
<li
|