Przeglądaj źródła

Remove extra comma

tags/0.5.0-vsc
thegrandpoobah 16 lat temu
rodzic
commit
2fce1778bf
1 zmienionych plików z 3 dodań i 2 usunięć
  1. +3
    -2
      mustache.js

+ 3
- 2
mustache.js Wyświetl plik

@@ -5,9 +5,10 @@
*/

var Mustache = function() {
var ParserException = function(message) {
function ParserException(message) {
this.message = message;
}
ParserException.prototype = {};
var Renderer = function(send_func, mode) {
this.user_send_func = send_func;
@@ -144,7 +145,7 @@ var Mustache = function() {
partials: partials,
stack: [],
openTag: openTag,
closeTag: closeTag,
closeTag: closeTag
};
},


Ładowanie…
Anuluj
Zapisz