Fixed visibility issue

This commit is contained in:
2017-09-07 17:45:16 +10:00
parent 59c2472989
commit e81843cdd1
+2 -2
View File
@@ -15,10 +15,10 @@ var markdown = window.markdownit({html:true})
render: function (tokens, idx) { render: function (tokens, idx) {
if (tokens[idx].nesting === 1) { if (tokens[idx].nesting === 1) {
//opening tag //opening tag
return '<div class="ui mobile only">'; return '<div class="ui mobile only grid"><div class="sixteen wide column">';
} else { } else {
// closing tag // closing tag
return '</div>'; return '</div></div>';
} }
} }
}); });