Explorar el Código

Fixed if statement. !==

tags/0.4.0
Tomas Eriksson hace 15 años
padre
commit
783f61450d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      mustache.js

+ 1
- 1
mustache.js Ver fichero

@@ -47,7 +47,7 @@ var Mustache = function() {
Sends parsed lines
*/
send: function(line) {
if(line != "") {
if(line !== "") {
this.buffer.push(line);
}
},


Cargando…
Cancelar
Guardar