I rightly do not know what this all is
This commit is contained in:
parent
af6b2b752e
commit
287c1f67c5
78 changed files with 3484 additions and 3365 deletions
|
|
@ -1,24 +1,26 @@
|
|||
import '../../../css/common/index.scss';
|
||||
import '../../common/index';
|
||||
|
||||
import { Tab } from 'bootstrap';
|
||||
|
||||
import {init as initImport} from "./import";
|
||||
import {init as initTable} from "./table";
|
||||
import {init as initUserLists} from "./userlists";
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const triggerTabList = document.querySelectorAll('#key-tab button')
|
||||
triggerTabList.forEach(triggerEl => {
|
||||
const tabTrigger = new Tab(triggerEl)
|
||||
|
||||
triggerEl.addEventListener('click', event => {
|
||||
event.preventDefault()
|
||||
tabTrigger.show()
|
||||
})
|
||||
})
|
||||
|
||||
initImport();
|
||||
initTable();
|
||||
initUserLists();
|
||||
import '../../../css/common/index.scss';
|
||||
import '../../common/index';
|
||||
|
||||
import { Tab } from 'bootstrap';
|
||||
|
||||
import {init as initImport} from "./import";
|
||||
import {init as initTable} from "./table";
|
||||
import {init as initUserLists} from "./userlists";
|
||||
import {initShare} from "./share";
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const triggerTabList = document.querySelectorAll('#key-tab button')
|
||||
triggerTabList.forEach(triggerEl => {
|
||||
const tabTrigger = new Tab(triggerEl)
|
||||
|
||||
triggerEl.addEventListener('click', event => {
|
||||
event.preventDefault()
|
||||
tabTrigger.show()
|
||||
})
|
||||
})
|
||||
|
||||
initImport();
|
||||
initTable();
|
||||
initUserLists();
|
||||
initShare();
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue