pathanimator/inbrowser/ts/init.ts

12 lines
264 B
TypeScript
Raw Normal View History

2022-01-19 18:34:37 +01:00
/// <reference path="PathAnimator.ts" />
/**
* Main entry function
*/
/// create our class as soon as the document is loaded
document.addEventListener("readystatechange", function(event: Event) {
if (!window.pa) {
window.pa = new PathAnimator();
}
});