From cbdbfc07f49d883ffcd432eac53303933deafe42 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20Ku=CC=88hnel?= <mail@michael-kuehnel.de>
Date: Thu, 18 Oct 2012 23:55:06 +0200
Subject: [PATCH] Fix indentation

---
 plugin/speakernotes/notes.html | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/plugin/speakernotes/notes.html b/plugin/speakernotes/notes.html
index 13f043d..c051879 100644
--- a/plugin/speakernotes/notes.html
+++ b/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);
-- 
GitLab