aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugin/notes-server/index.js
diff options
context:
space:
mode:
authorHakim El Hattab2014-05-04 10:10:21 +0200
committerHakim El Hattab2014-05-04 10:10:21 +0200
commit3eb7038a153b12245cffbc840a727a764d82b333 (patch)
tree9e514ea03995fd2a988f1996f37692dbcf6448f2 /plugin/notes-server/index.js
parent5e85f02eb1596d0c5a71aa35430c0914e0b6d35a (diff)
sync server-side speaker notes after notes window opens
Diffstat (limited to 'plugin/notes-server/index.js')
-rw-r--r--plugin/notes-server/index.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugin/notes-server/index.js b/plugin/notes-server/index.js
index b6779d3..df917f1 100644
--- a/plugin/notes-server/index.js
+++ b/plugin/notes-server/index.js
@@ -16,8 +16,12 @@ var opts = {
io.sockets.on( 'connection', function( socket ) {
- socket.on( 'state', function( state ) {
- socket.broadcast.emit( 'state', state );
+ socket.on( 'connect', function( data ) {
+ socket.broadcast.emit( 'connect', data );
+ });
+
+ socket.on( 'statechanged', function( data ) {
+ socket.broadcast.emit( 'statechanged', data );
});
});