소스 검색

simplify query match

Hakim El Hattab 12 년 전
부모
커밋
a6969770bd
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      lib/slidenotes/client.js

+ 1 - 2
lib/slidenotes/client.js

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