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
Commits
6fe6c239
Commit
6fe6c239
authored
4 years ago
by
chris
Browse files
Options
Downloads
Patches
Plain Diff
remove console.log
parent
28684a70
No related branches found
No related tags found
1 merge request
!117
Current features fixes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
wax-prosemirror-core/src/WaxView.js
+2
-3
2 additions, 3 deletions
wax-prosemirror-core/src/WaxView.js
wax-prosemirror-services/src/TrackChangeService/track-changes/trackedTransaction.js
+0
-1
0 additions, 1 deletion
...rc/TrackChangeService/track-changes/trackedTransaction.js
with
2 additions
and
4 deletions
wax-prosemirror-core/src/WaxView.js
+
2
−
3
View file @
6fe6c239
...
...
@@ -59,8 +59,6 @@ export default props => {
},
[]);
const
dispatchTransaction
=
transaction
=>
{
const
{
TrackChange
}
=
props
;
/*when a transaction comes from a view other than
main don't keep updating the view ,as this this
the central point of each transaction
...
...
@@ -73,7 +71,8 @@ export default props => {
"
main
"
);
}
const
tr
=
TrackChange
const
tr
=
{
props
:
{
TrackChange
}
}
?
trackedTransaction
(
transaction
,
view
.
state
,
user
)
:
transaction
;
...
...
This diff is collapsed.
Click to expand it.
wax-prosemirror-services/src/TrackChangeService/track-changes/trackedTransaction.js
+
0
−
1
View file @
6fe6c239
...
...
@@ -33,7 +33,6 @@ const trackedTransaction = (tr, state, user) => {
}
const
group
=
tr
.
getMeta
(
"
outsideView
"
)
?
tr
.
getMeta
(
"
outsideView
"
)
:
"
main
"
;
console
.
log
(
group
);
const
newTr
=
state
.
tr
;
const
map
=
new
Mapping
();
const
date
=
Math
.
floor
(
Date
.
now
()
/
300000
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment