We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a879b5b commit fb8ead5Copy full SHA for fb8ead5
1 file changed
public/js/index.js
@@ -470,6 +470,11 @@ function windowResizeInner() {
470
clearMap();
471
syncScrollToView();
472
editor.setOption('viewportMargin', viewportMargin);
473
+ //add or update user cursors
474
+ for (var i = 0; i < onlineUsers.length; i++) {
475
+ if (onlineUsers[i].id != personalInfo.id)
476
+ buildCursor(onlineUsers[i]);
477
+ }
478
updateScrollspy();
479
}, 100);
480
}
0 commit comments