diff options
author | Hakim El Hattab | 2013-10-11 22:05:43 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-10-11 22:05:43 -0400 |
commit | 942724238fee5f2fe7480df3a7fbf033dcda6ce9 (patch) | |
tree | 03c0a0feb2c604076fcb4823c196e052fa7c19a7 /plugin/markdown/markdown.js | |
parent | f8fed1358aee37b5eb86e79da40318eded8daba6 (diff) |
better check for arrays in markdown plugin
Diffstat (limited to 'plugin/markdown/markdown.js')
-rwxr-xr-x | plugin/markdown/markdown.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/markdown/markdown.js b/plugin/markdown/markdown.js index 4cf0cc5..61d6987 100755 --- a/plugin/markdown/markdown.js +++ b/plugin/markdown/markdown.js @@ -171,7 +171,7 @@ // flatten the hierarchical stack, and insert <section data-markdown> tags for( var i = 0, len = sectionStack.length; i < len; i++ ) { // vertical - if( sectionStack[i].propertyIsEnumerable( 'length' ) && typeof sectionStack[i].splice === 'function' ) { + if( sectionStack[i] instanceof Array ) { markdownSections += '<section '+ options.attributes +'>'; sectionStack[i].forEach( function( child ) { |