1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-25 16:19:44 +02:00

Added misprints (#69)

* Added misprints

* Rebuilt bundle in prod mode

* Added config from .codexdocsrc

* Updated .sample
This commit is contained in:
DorofeevMark 2019-03-14 08:19:37 +03:00 committed by GitHub
parent 09abc25c48
commit 98cb88f3af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 42 additions and 10 deletions

View file

@ -14,6 +14,7 @@ import ModuleDispatcher from 'module-dispatcher';
*/
import Writing from './modules/writing';
import Page from './modules/page';
import Extensions from './modules/extensions';
/**
* Main app class
@ -25,6 +26,7 @@ class Docs {
constructor() {
this.writing = new Writing();
this.page = new Page();
this.extensions = new Extensions();
document.addEventListener('DOMContentLoaded', (event) => {
this.docReady();