Kaynağa Gözat

Fix indentation

Michael Kühnel 12 yıl önce
ebeveyn
işleme
cbdbfc07f4
1 değiştirilmiş dosya ile 6 ekleme ve 6 silme
  1. 6 6
      plugin/speakernotes/notes.html

+ 6 - 6
plugin/speakernotes/notes.html

@@ -112,12 +112,12 @@
 			// ignore data from sockets that aren't ours
 			if (data.socketId !== socketId) { return; }
 
-                        if (data.markdown) {
-                          notes.innerHTML = (new Showdown.converter()).makeHtml(data.notes);
-                        }
-                        else {
-                          notes.innerHTML = data.notes;
-                        }
+			if (data.markdown) {
+				notes.innerHTML = (new Showdown.converter()).makeHtml(data.notes);
+			}
+			else {
+				notes.innerHTML = data.notes;
+			}
 
 			currentSlide.contentWindow.Reveal.slide(data.indexh, data.indexv);
 			nextSlide.contentWindow.Reveal.slide(data.nextindexh, data.nextindexv);