Browse Source

ts minor improve

pull/4884/head
Daniel 2 years ago
parent
commit
de8724fd0a
  1. 2
      src/ts/card-widget.ts
  2. 7
      src/ts/treeview.ts

2
src/ts/card-widget.ts

@ -42,7 +42,7 @@ const Default = {
minimizeIcon: 'fa-compress'
}
interface Config {
type Config = {
animationSpeed: number;
collapseTrigger: string;
removeTrigger: string;

7
src/ts/treeview.ts

@ -35,7 +35,7 @@ const Default = {
animationSpeed: 300
}
interface Config {
type Config = {
animationSpeed: number;
}
@ -58,7 +58,7 @@ class Treeview {
}
open(): void {
const event = new CustomEvent(EVENT_EXPANDED)
const event = new Event(EVENT_EXPANDED)
if (this._navItem) {
this._navItem.classList.add(CLASS_NAME_MENU_OPEN)
@ -72,7 +72,8 @@ class Treeview {
}
close(): void {
const event = new CustomEvent(EVENT_COLLAPSED)
const event = new Event(EVENT_COLLAPSED)
if (this._navItem) {
this._navItem.classList.remove(CLASS_NAME_MENU_IS_OPEN)
this._navItem.classList.remove(CLASS_NAME_MENU_OPEN)

Loading…
Cancel
Save