mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 03:29:31 -07:00
14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
import { footerHeightUpdateInit } from './utils'
|
|
import { imgIndexSpanUpdate } from './indexDisp'
|
|
import { imagesArrayLen, trackMouseInit } from './trackMouse'
|
|
import { thresholdCtlInit } from './thresholdCtl'
|
|
|
|
function init(): void {
|
|
footerHeightUpdateInit()
|
|
imgIndexSpanUpdate(0, imagesArrayLen)
|
|
thresholdCtlInit()
|
|
trackMouseInit()
|
|
}
|
|
|
|
init()
|