Browse Source

simplify query match

embed
Hakim El Hattab 12 years ago
parent
commit
a6969770bd
  1. 3
      lib/slidenotes/client.js

3
lib/slidenotes/client.js

@ -1,7 +1,6 @@
(function() { (function() {
// don't emit events from inside the previews themselves // don't emit events from inside the previews themselves
var qs = window.location.href.split('?'); if ( window.location.search.match( /receiver/gi ) ) { return; }
if (qs.length > 1 && qs[1].match('receiver')) { return; }
var socket = io.connect(window.location.origin); var socket = io.connect(window.location.origin);
var socketId = Math.random().toString().slice(2); var socketId = Math.random().toString().slice(2);

Loading…
Cancel
Save