Skip to content

Commit 3088be6

Browse files
committed
extra console logs has been deleted
1 parent fdd7698 commit 3088be6

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/js/views/components/MonacoEditor.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,14 @@ class MonacoEditor extends React.Component{
7575
initSocketEvents(){
7676

7777
this.editor.cursor.onDidChange((data)=>{
78-
console.log(data, "cursorChange")
7978
socketHandler.emit("cursorChange", data)
8079
})
8180

8281
this.editor.getModel().onDidChangeContent((data)=>{
83-
console.log(data, "contentChange")
8482
socketHandler.emit("contentChange", data)
8583
})
8684

8785
this.editor.onDidScrollChange((data)=>{
88-
console.log(data, "scrollChange")
8986
socketHandler.emit("scrollChange", data)
9087
})
9188

src/js/views/controllers/Server.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ class Server {
8282
})
8383

8484
socket.on('letsSync', ()=>{
85-
console.log('salam')
8685
this.sync(socket)
8786
});
8887

0 commit comments

Comments
 (0)