Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

43 строки
1.7KB

  1. = HEAD
  2. * Don't require the original template to be passed to the rendering function
  3. when using compiled templates. This is still required when using higher-order
  4. functions in order to be able to extract the portion of the template
  5. that was contained by that section. Fixes #262
  6. = 0.7.2 / 27 Dec 2012
  7. * Fixed a rendering bug (#274) when using nested higher-order sections.
  8. * Better error reporting on failed parse.
  9. * Converted tests to use mocha instead of vows.
  10. = 0.7.1 / 6 Dec 2012
  11. * Handle empty templates gracefully. Fixes #265, #267, and #270.
  12. * Cache partials by template, not by name. Fixes #257.
  13. * Added Mustache.compileTokens to compile the output of Mustache.parse. Fixes
  14. #258.
  15. = 0.7.0 / 10 Sep 2012
  16. * Rename Renderer => Writer.
  17. * Allow partials to be loaded dynamically using a callback (thanks
  18. @TiddoLangerak for the suggestion).
  19. * Fixed a bug with higher-order sections that prevented them from being
  20. passed the raw text of the section from the original template.
  21. * More concise token format. Tokens also include start/end indices in the
  22. original template.
  23. * High-level API is consistent with the Writer API.
  24. * Allow partials to be passed to the pre-compiled function (thanks
  25. @fallenice).
  26. * Don't use eval (thanks @cweider).
  27. = 0.6.0 / 31 Aug 2012
  28. * Use JavaScript's definition of falsy when determining whether to render an
  29. inverted section or not. Issue #186.
  30. * Use Mustache.escape to escape values inside {{}}. This function may be
  31. reassigned to alter the default escaping behavior. Issue #244.
  32. * Fixed a bug that clashed with QUnit (thanks @kannix).
  33. * Added volo support (thanks @guybedford).