diff options
author | Tim Baumann <tim@timbaumann.info> | 2017-09-23 22:02:01 +0200 |
---|---|---|
committer | Alexander Biehl <alexbiehl@gmail.com> | 2017-09-23 22:02:01 +0200 |
commit | e99aefb50ca63e2dbcc95841efbb53cea90151d8 (patch) | |
tree | 3ab0cebcd012122631336281dceb389dd0fd4506 /haddock-api/resources/html/js-src/init.ts | |
parent | fe4c6c7d2907a79118d836e72c0442d666091524 (diff) |
Add compile step that bundles and compresses JS files (#684)
* Add compile step that bundles and compresses JS files
Also, manage dependencies on third-party JS libraries using NPM.
* Compile JS from TypeScript
* Enable 'noImplicitAny' in TypeScript
* QuickJump: use JSX syntax
* Generate source maps from TypeScript for easier debugging
* TypeScript: more accurate type
* Separate quick jump css file from ocean theme
Diffstat (limited to 'haddock-api/resources/html/js-src/init.ts')
-rw-r--r-- | haddock-api/resources/html/js-src/init.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/haddock-api/resources/html/js-src/init.ts b/haddock-api/resources/html/js-src/init.ts new file mode 100644 index 00000000..0619dfc3 --- /dev/null +++ b/haddock-api/resources/html/js-src/init.ts @@ -0,0 +1,21 @@ +import * as util from "./haddock-util"; +import * as quickJump from "./quick-jump"; + +function onDomReady(callback: () => void) { + if (document.readyState === 'interactive') { + callback(); + } else { + document.addEventListener('readystatechange', () => { + if (document.readyState === 'interactive') { + callback(); + } + }); + } +} + +onDomReady(() => { + util.addStyleMenu(); + util.resetStyle(); + util.restoreCollapsed(); + quickJump.init(); +});
\ No newline at end of file |