mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-14 10:09:31 -07:00
15 lines
365 B
TypeScript
15 lines
365 B
TypeScript
import { imgIndexSpanUpdate } from './indexDisp'
|
|
import { trackMouseInit } from './trackMouse'
|
|
import { thresholdCtlInit } from './thresholdCtl'
|
|
import { imagesArrayLen } from './dataFetch'
|
|
import { vwRefreshInit } from './overlay'
|
|
|
|
function init(): void {
|
|
vwRefreshInit()
|
|
imgIndexSpanUpdate(0, imagesArrayLen)
|
|
thresholdCtlInit()
|
|
trackMouseInit()
|
|
}
|
|
|
|
init()
|