소스 검색

Add missing semicolon

Michael Kühnel 12 년 전
부모
커밋
409c0dfbcc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      plugin/speakernotes/client.js

+ 1 - 1
plugin/speakernotes/client.js

@@ -6,7 +6,7 @@
 	var socketId = Math.random().toString().slice(2);
 	
 	console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId);
-	window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId)
+	window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId);
 
 	Reveal.addEventListener( 'slidechanged', function( event ) {
 		var nextindexh;