Procházet zdrojové kódy

Fix compatibility bug in Chrome

tags/0.5.0-vsc
Sahab Yazdani před 15 roky
rodič
revize
3e98fdf68e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      mustache.js

+ 1
- 1
mustache.js Zobrazit soubor

@@ -459,7 +459,7 @@ var Mustache = (function(undefined) {
for (n = parserContext.tokens.length;parserContext.cursor<n;++parserContext.cursor) {
token = parserContext.tokens[parserContext.cursor];
if (token==='') {
if (token==='' || token===undefined) {
continue;
}


Načítá se…
Zrušit
Uložit