diff options
Diffstat (limited to 'public/js/lib/editor')
-rw-r--r-- | public/js/lib/editor/modeType.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/public/js/lib/editor/modeType.js b/public/js/lib/editor/modeType.js new file mode 100644 index 00000000..f3212105 --- /dev/null +++ b/public/js/lib/editor/modeType.js @@ -0,0 +1,11 @@ +export default { + edit: { + name: 'edit' + }, + view: { + name: 'view' + }, + both: { + name: 'both' + } +} |