mirror of
https://github.com/artegoser/AnoPaper.git
synced 2025-02-23 12:43:14 +03:00
fix: join to sync
This commit is contained in:
parent
6d78613653
commit
482031b1f6
3 changed files with 1 additions and 5 deletions
|
@ -17,7 +17,6 @@ function onFooEvent() {
|
|||
}
|
||||
|
||||
function onSync({ settings, Notes, NoteText, NoteName }) {
|
||||
console.log(settings, Notes, NoteText, NoteName);
|
||||
localStorage.setItem("Notes", Notes);
|
||||
localStorage.setItem("NoteText", NoteText);
|
||||
localStorage.setItem("NoteName", NoteName);
|
||||
|
|
|
@ -69,9 +69,8 @@ function Settings() {
|
|||
<SettingsSection name={locals.Sync}>
|
||||
<SettingsCheckBox
|
||||
label={locals.BroadcastSync}
|
||||
onChange={(e) => {
|
||||
onClick={(e) => {
|
||||
if (e.target.checked) {
|
||||
console.log("Broadcasting sync");
|
||||
socket.emit("joinRoom", settings.SyncPassword);
|
||||
} else {
|
||||
socket.emit("leaveRoom");
|
||||
|
|
Loading…
Add table
Reference in a new issue