There was an error while loading. Please reload this page.
1 parent 2eb3d08 commit c87d7dbCopy full SHA for c87d7db
1 file changed
plugin/markdown/markdown.js
@@ -219,10 +219,8 @@
219
220
xhr.onreadystatechange = function() {
221
if( xhr.readyState === 4 ) {
222
- if (
223
- (xhr.status >= 200 && xhr.status < 300) ||
224
- xhr.status === 0 // file protocol yields status code 0 (useful for local debug, mobile applications etc.)
225
- ) {
+ // file protocol yields status code 0 (useful for local debug, mobile applications etc.)
+ if ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {
226
227
section.outerHTML = slidify( xhr.responseText, {
228
separator: section.getAttribute( 'data-separator' ),
0 commit comments