From 873f2dbc96e712d1afbc2f197c8b60287d7f728c Mon Sep 17 00:00:00 2001
From: Sergey Gospodarets <shospodarets@spotware.com>
Date: Wed, 2 Apr 2014 13:02:39 +0300
Subject: [PATCH] Mark xhr.status=0 as successful

---
 plugin/markdown/markdown.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js
index efec14e..6c27a13 100755
--- a/plugin/markdown/markdown.js
+++ b/plugin/markdown/markdown.js
@@ -220,9 +220,9 @@
 				xhr.onreadystatechange = function() {
 					if( xhr.readyState === 4 ) {
 						if (
-                            (xhr.status >= 200 && xhr.status < 300) ||
-                            xhr.status === 0 // file protocol yields status code 0 (useful for local debug, mobile applications etc.)
-                            ) {
+							(xhr.status >= 200 && xhr.status < 300) ||
+							xhr.status === 0 // file protocol yields status code 0 (useful for local debug, mobile applications etc.)
+							) {
 
 							section.outerHTML = slidify( xhr.responseText, {
 								separator: section.getAttribute( 'data-separator' ),
-- 
GitLab