forked from codex-team/editor.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* i18n first steps * i18n internal, toolbox, api for tools * namespaced api * tn, t * tn in block tunes * join toolbox and inlineTools under toolNames * translations * make enum toolTypes * Update block.ts * Update src/components/core.ts Co-Authored-By: George Berezhnoy <[email protected]> * add more types * rm tn * export i18n types * upd bundle * fix tabulation * Add type-safe namespaces * upd * Improve example * Update toolbox.ts * improve examplle * upd * fix typo * Add comments for complex types Co-authored-by: George Berezhnoy <[email protected]> Co-authored-by: Georgy Berezhnoy <[email protected]>
- Loading branch information
1 parent
4c0d806
commit 21cac86
Showing
35 changed files
with
1,014 additions
and
76 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,15 @@ | |
* @author CodeX-Team <https://ifmo.su> | ||
*/ | ||
|
||
/** | ||
* Base Paragraph Block for the Editor.js. | ||
* Represents simple paragraph | ||
* | ||
* @author CodeX ([email protected]) | ||
* @copyright CodeX 2018 | ||
* @license The MIT License (MIT) | ||
*/ | ||
|
||
/*! | ||
* Codex JavaScript Notification module | ||
* https://github.com/codex-team/js-notifier | ||
|
@@ -46,15 +55,6 @@ | |
* @version 1.1.1 | ||
*/ | ||
|
||
/** | ||
* Base Paragraph Block for the Editor.js. | ||
* Represents simple paragraph | ||
* | ||
* @author CodeX ([email protected]) | ||
* @copyright CodeX 2018 | ||
* @license The MIT License (MIT) | ||
*/ | ||
|
||
/*! | ||
* CodeX.Tooltips | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -276,9 +276,10 @@ | |
}, | ||
onChange: function() { | ||
console.log('something changed'); | ||
} | ||
}, | ||
}); | ||
|
||
|
||
/** | ||
* Saving example | ||
*/ | ||
|
Oops, something went wrong.