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
!458
Hhmi accessibility
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Hhmi accessibility
hhmi-accessibility
into
master
Overview
0
Commits
41
Pipelines
0
Changes
7
Merged
Christos
requested to merge
hhmi-accessibility
into
master
2 years ago
Overview
0
Commits
41
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 6
version 12
69cc4e25
2 years ago
version 11
c047a82f
2 years ago
version 10
cf461fa2
2 years ago
version 9
ad13f700
2 years ago
version 8
f2308ba5
2 years ago
version 7
14db45b7
2 years ago
version 6
de3a33c4
2 years ago
version 5
a11ef429
2 years ago
version 4
5ac44e32
2 years ago
version 3
987f4d76
2 years ago
version 2
d203b67a
2 years ago
version 1
cee8b4c5
2 years ago
master (base)
and
version 7
latest version
e18e2f5b
41 commits,
2 years ago
version 12
69cc4e25
24 commits,
2 years ago
version 11
c047a82f
18 commits,
2 years ago
version 10
cf461fa2
15 commits,
2 years ago
version 9
ad13f700
14 commits,
2 years ago
version 8
f2308ba5
12 commits,
2 years ago
version 7
14db45b7
11 commits,
2 years ago
version 6
de3a33c4
10 commits,
2 years ago
version 5
a11ef429
10 commits,
2 years ago
version 4
5ac44e32
9 commits,
2 years ago
version 3
987f4d76
8 commits,
2 years ago
version 2
d203b67a
6 commits,
2 years ago
version 1
cee8b4c5
4 commits,
2 years ago
Show latest version
1 file
+
6
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
wax-prosemirror-services/src/MatchingService/MatchingContainerNodeView.js
+
6
−
1
Options
@@ -30,7 +30,12 @@ export default class MatchingContainerNodeView extends QuestionsNodeView {
}
stopEvent
(
event
)
{
if
(
event
.
target
.
type
===
'
textarea
'
||
event
.
target
.
type
===
'
text
'
)
{
if
(
event
.
target
.
type
===
'
textarea
'
||
event
.
target
.
type
===
'
text
'
||
event
.
target
.
type
===
'
button
'
||
!
event
.
target
.
type
)
{
return
true
;
}
const
innerView
=
this
.
context
.
pmViews
[
this
.
node
.
attrs
.
id
];