aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugin
diff options
context:
space:
mode:
authorMichael Kühnel2012-10-18 23:59:43 +0200
committerMichael Kühnel2012-10-18 23:59:43 +0200
commit46e270e59f9aae7a3528fcd3f9d2287f341c0be7 (patch)
tree34635a82aa8a466da0462ff4367790dfd93c8329 /plugin
parent409c0dfbcc889017813a526b21ffd0a42aa5e804 (diff)
Broadcast fragmentdata
Diffstat (limited to 'plugin')
-rw-r--r--plugin/speakernotes/index.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/speakernotes/index.js b/plugin/speakernotes/index.js
index 17314f3..7387f5d 100644
--- a/plugin/speakernotes/index.js
+++ b/plugin/speakernotes/index.js
@@ -18,6 +18,9 @@ io.sockets.on('connection', function(socket) {
socket.on('slidechanged', function(slideData) {
socket.broadcast.emit('slidedata', slideData);
});
+ socket.on('fragmentchanged', function(fragmentData) {
+ socket.broadcast.emit('fragmentdata', fragmentData);
+ });
});
app.configure(function() {