Sfoglia il codice sorgente

Merge pull request #369 from maltsev/patch-1

Correct mistake in the readme

Fixes #370
tags/v1.0.0
Michael Jackson 12 anni fa
parent
commit
209fea318e
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      README.md

+ 1
- 1
README.md Vedi File

@@ -74,7 +74,7 @@ If your templates reside in individual files, you can load them asynchronously a
```js ```js
function loadUser() { function loadUser() {
$.get('template.mst', function(template) { $.get('template.mst', function(template) {
var html = Mustache.render(template, {name: "Luke"});
var rendered = Mustache.render(template, {name: "Luke"});
$('#target').html(rendered); $('#target').html(rendered);
}); });
} }


Loading…
Annulla
Salva