1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-23 15:19:41 +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

@ -0,0 +1,17 @@
import Misprints from '@codexteam/misprints';
/**
* @class Extensions
* @classdesc Class for extensions module
*/
export default class Extensions {
/**
* Initialize extensions
*/
constructor() {
this.misprints = new Misprints({
chatId: window.config.chatId
});
}
}