From: Michael Kühnel Date: Thu, 18 Oct 2012 21:55:06 +0000 (+0200) Subject: Fix indentation X-Git-Tag: 2.1.0~10^2~1^2~11 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=cbdbfc07f49d883ffcd432eac53303933deafe42;p=reveal.js.git Fix indentation --- 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);