Fix indentation
authorMichael Kühnel <mail@michael-kuehnel.de>
Thu, 18 Oct 2012 21:55:06 +0000 (23:55 +0200)
committerMichael Kühnel <mail@michael-kuehnel.de>
Thu, 18 Oct 2012 21:55:06 +0000 (23:55 +0200)
plugin/speakernotes/notes.html

index 13f043d8a4d8e1cd493fe875380a6ddba791a064..c051879c6bcb86d161c5551f1d4e8d0d00c7bcfc 100644 (file)
                        // 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);