Skip to content

Commit d370a05

Browse files
committed
version 17.0.0
1 parent c5e6be6 commit d370a05

24 files changed

Lines changed: 199 additions & 44 deletions

app/aboutTools.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ module.exports = {
3030
- css validate: npm version 1.2.9
3131
- deezer search: npm versions 1.3.0 - 1.3.1
3232
- potter search: npm version 1.3.3
33+
- poker rules: npm version 1.3.5
34+
- quotes tool: npm version 1.3.7
3335
`
3436
})
3537
}

app/components/navbar_component.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,12 @@ class NavBarStack extends HTMLElement {
109109
wallpaperLink.href = '../wallpapers/index.html'
110110
wallpaperLink.title = 'go to wallpapers'
111111

112+
const quotesLink = document.createElement('a')
113+
quotesLink.classList.add('sidenav-menu-button')
114+
quotesLink.textContent = 'quotes'
115+
quotesLink.href = '../quotes/index.html'
116+
quotesLink.title = 'go to quotes'
117+
112118
links.forEach(({ title, tools }) => {
113119
const itemComponent = document.createElement('details')
114120
itemComponent.name = "tools"
@@ -144,7 +150,7 @@ class NavBarStack extends HTMLElement {
144150
listComponent.append(itemComponent)
145151
})
146152

147-
listComponent.append(wallpaperLink)
153+
listComponent.append(wallpaperLink, quotesLink)
148154

149155
navbarComponent.append(headerComponent, listComponent)
150156

1.17 MB
Loading
1.21 MB
Loading
1.11 MB
Loading
1.17 MB
Loading
1.13 MB
Loading
1.22 MB
Loading
1.23 MB
Loading
1.2 MB
Loading

0 commit comments

Comments
 (0)