comand-component-library 4.1.25 → 4.1.26
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +15240 -12072
- package/package.json +1 -1
- package/src/components/CmdMainNavigation.vue +2 -0
package/package.json
CHANGED
@@ -299,6 +299,7 @@ export default {
|
|
299
299
|
},
|
300
300
|
closeOffcanvasNavigation() {
|
301
301
|
this.showOffcanvas = false
|
302
|
+
console.log("close")
|
302
303
|
document.getElementById("toggle-offcanvas").focus()
|
303
304
|
},
|
304
305
|
toggleOffcanvasNavigation() {
|
@@ -308,6 +309,7 @@ export default {
|
|
308
309
|
} else {
|
309
310
|
// open offcanvas
|
310
311
|
this.showOffcanvas = true
|
312
|
+
console.log("open")
|
311
313
|
this.$nextTick(() => document.getElementById("close-offcanvas").focus())
|
312
314
|
}
|
313
315
|
}
|