From 825fe51de9bee6d4727a021f1109e37380eff012 Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Fri, 8 Mar 2013 19:05:58 -0500 Subject: add Reveal.getConfig(), replace use of window.globals (#98) --- plugin/multiplex/client.js | 2 +- plugin/multiplex/master.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'plugin') diff --git a/plugin/multiplex/client.js b/plugin/multiplex/client.js index cb7b27a..0e0b39b 100644 --- a/plugin/multiplex/client.js +++ b/plugin/multiplex/client.js @@ -1,5 +1,5 @@ (function() { - var multiplex = window.globals.multiplex; + var multiplex = Reveal.getConfig().multiplex; var socketId = multiplex.id; var socket = io.connect(multiplex.url); diff --git a/plugin/multiplex/master.js b/plugin/multiplex/master.js index 5c18390..75697d4 100644 --- a/plugin/multiplex/master.js +++ b/plugin/multiplex/master.js @@ -1,7 +1,7 @@ (function() { // don't emit events from inside the previews themselves if ( window.location.search.match( /receiver/gi ) ) { return; } - var multiplex = window.globals.multiplex; + var multiplex = Reveal.getConfig().multiplex; var socket = io.connect(multiplex.url); -- cgit v1.2.3