Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aksh-konda committed Aug 18, 2021
1 parent cf8cc3b commit f15ae6d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Empty file added README.md
Empty file.
2 changes: 1 addition & 1 deletion app-collab-note/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This Project aims to develop a web app with a collaborative editor for a Joplin note. Yjs is being used for peer-to-peer communication and conflict-resolution. Yjs is a shared editing framework. It exposes Shared Types that can be manipulated like any other data type and they sync automatically. Yjs also provides binding libraries for editors like CodeMirror, Quill, ProseMirror, etc.
## Demo

![Collab Note Demo](/assets/collab-note-demo.gif)
![Collab Note Demo](assets/collab-note-demo.gif)

For more info on the project please refer to the post: [real-time collaboration on note project](https://discourse.joplinapp.org/t/real-time-collaboration-on-a-note-project/17486)

Expand Down
2 changes: 1 addition & 1 deletion app-collab-note/src/components/Toolbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function Toolbar(props: Props) {
text: '',
onlyHost: true,
action: () => {
if(confirm('This will override the current contents. are you sure?')) {
if(confirm('This will override the current contents of the note.\nare you sure?')) {
props.loadNote();
}
}
Expand Down

0 comments on commit f15ae6d

Please sign in to comment.