瀏覽代碼

open slide notes window automatically #135

Hakim El Hattab 12 年之前
父節點
當前提交
edfcfb1d3f
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      plugin/speakernotes/client.js

+ 2 - 1
plugin/speakernotes/client.js

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