Przeglądaj źródła

fix numeric presence condition

Hakim El Hattab 6 lat temu
rodzic
commit
32197bd77d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      plugin/highlight/highlight.js

+ 1 - 1
plugin/highlight/highlight.js

@@ -141,7 +141,7 @@ c:[{cN:"comment",b:/\(\*/,e:/\*\)/},e.ASM,e.QSM,e.CNM,{b:/\{/,e:/\}/,i:/:/}]}});
 						block.parentNode.appendChild( fragmentBlock );
 						RevealHighlight.highlightLines( fragmentBlock );
 
-						if( fragmentIndex ) {
+						if( typeof fragmentIndex === 'number' ) {
 							fragmentBlock.setAttribute( 'data-fragment-index', fragmentIndex );
 							fragmentIndex += 1;
 						}