Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

28 wiersze
1.1KB

  1. = HEAD / 22 Sep 2012
  2. * Cache partials by template, not by name. Fixes #257.
  3. * Added Mustache.compileTokens to compile the output of Mustache.parse. Fixes
  4. #258.
  5. = 0.7.0 / 10 Sep 2012
  6. * Rename Renderer => Writer.
  7. * Allow partials to be loaded dynamically using a callback (thanks @TiddoLangerak
  8. for the suggestion).
  9. * Fixed a bug with higher-order sections that prevented them from being
  10. passed the raw text of the section from the original template.
  11. * More concise token format. Tokens also include start/end indices in the
  12. original template.
  13. * High-level API is consistent with the Writer API.
  14. * Allow partials to be passed to the pre-compiled function (thanks @fallenice).
  15. * Don't use eval (thanks @cweider).
  16. = 0.6.0 / 31 Aug 2012
  17. * Use JavaScript's definition of falsy when determining whether to render an
  18. inverted section or not. Issue #186.
  19. * Use Mustache.escape to escape values inside {{}}. This function may be
  20. reassigned to alter the default escaping behavior. Issue #244.
  21. * Fixed a bug that clashed with QUnit (thanks @kannix).
  22. * Added volo support (thanks @guybedford).