Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wax-prosemirror
Manage
Activity
Members
Labels
Plan
Issues
34
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wax
wax-prosemirror
Merge requests
!130
new comment discussion structure
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
new comment discussion structure
save-comment-conversation
into
master
Overview
0
Commits
1
Pipelines
0
Changes
6
Merged
Christos
requested to merge
save-comment-conversation
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
6
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6b8abd36
1 commit,
4 years ago
6 files
+
63
−
38
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
editors/editoria/src/config/config.js
+
22
−
22
Options
import
{
emDash
,
ellipsis
}
from
"
prosemirror-inputrules
"
;
import
{
columnResizing
,
tableEditing
}
from
"
prosemirror-tables
"
;
import
{
emDash
,
ellipsis
}
from
'
prosemirror-inputrules
'
;
import
{
columnResizing
,
tableEditing
}
from
'
prosemirror-tables
'
;
import
{
AnnotationToolGroupService
,
ImageService
,
@@ -20,37 +20,37 @@ import {
NoteService
,
NoteToolGroupService
,
TrackChangeService
,
CommentsService
}
from
"
wax-prosemirror-services
"
;
CommentsService
,
}
from
'
wax-prosemirror-services
'
;
import
{
WaxSelectionPlugin
}
from
"
wax-prosemirror-plugins
"
;
import
{
WaxSelectionPlugin
}
from
'
wax-prosemirror-plugins
'
;
import
invisibles
,
{
space
,
hardBreak
,
paragraph
}
from
"
@guardian/prosemirror-invisibles
"
;
paragraph
,
}
from
'
@guardian/prosemirror-invisibles
'
;
export
default
{
MenuService
:
[
{
templateArea
:
"
topBar
"
,
templateArea
:
'
topBar
'
,
toolGroups
:
[
"
Base
"
,
'
Base
'
,
{
name
:
"
Annotations
"
,
more
:
[
"
Superscript
"
,
"
Subscript
"
,
"
SmallCaps
"
]
name
:
'
Annotations
'
,
more
:
[
'
Superscript
'
,
'
Subscript
'
,
'
SmallCaps
'
],
},
"
Notes
"
,
"
Lists
"
,
"
Images
"
,
"
Tables
"
]
'
Notes
'
,
'
Lists
'
,
'
Images
'
,
'
Tables
'
,
]
,
},
{
templateArea
:
"
leftSideBar
"
,
toolGroups
:
[
"
Display
"
,
"
Text
"
]
}
templateArea
:
'
leftSideBar
'
,
toolGroups
:
[
'
Display
'
,
'
Text
'
],
}
,
],
RulesService
:
[
emDash
,
ellipsis
],
@@ -60,7 +60,7 @@ export default {
columnResizing
(),
tableEditing
(),
invisibles
([
hardBreak
()]),
WaxSelectionPlugin
WaxSelectionPlugin
,
],
// Always load first CommentsService and LinkService,
@@ -85,6 +85,6 @@ export default {
new
ImageToolGroupService
(),
new
AnnotationToolGroupService
(),
new
NoteToolGroupService
(),
new
ListToolGroupService
()
]
new
ListToolGroupService
()
,
]
,
};