diff options
Diffstat (limited to 'plugin/notes-server/index.js')
-rw-r--r-- | plugin/notes-server/index.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/notes-server/index.js b/plugin/notes-server/index.js index 75838de..683f064 100644 --- a/plugin/notes-server/index.js +++ b/plugin/notes-server/index.js @@ -26,6 +26,10 @@ io.on( 'connection', function( socket ) { socket.broadcast.emit( 'statechanged', data ); }); + socket.on( 'statechanged-speaker', function( data ) { + socket.broadcast.emit( 'statechanged-speaker', data ); + }); + }); [ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) { |