ractive v0.1.9 Release Notes

  • 2013-04-12

    • ✅ More complete compliance with mustache test suite
    • More efficient compilation (consecutive text nodes are concatenated, etc)
    • Cleaned up public API, internal functions now kept private
    • .animate() now interpolates between arrays, and between objects
    • ⚡️ Complex element attributes wait until the end of a .set() cycle to update, to avoid repeatedly modifying the DOM unnecessarily
    • Element property names are used instead of attributes wherever possible (e.g. we use node.className='...' instead of node.setAttribute('class','...') internally)
    • 🛠 Various bug fixes