Move documentation

This commit is contained in:
kevinpauer
2022-05-12 10:14:10 +02:00
parent 5d66376c77
commit 5f183de174
130 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
var compodoc = {
EVENTS: {
READY: 'compodoc.ready',
SEARCH_READY: 'compodoc.search.ready'
}
};
Object.assign( compodoc, EventDispatcher.prototype );
document.addEventListener('DOMContentLoaded', function() {
compodoc.dispatchEvent({
type: compodoc.EVENTS.READY
});
});