BorisMoore / jsviews

Interactive data-driven views, MVVM and MVP, built on top of JsRender templates
http://www.jsviews.com/#jsviews
MIT License
857 stars 130 forks source link

jQuery dependency #294

Closed organic-scholar closed 9 years ago

organic-scholar commented 9 years ago

jQuery is hardcoded dependency of jsviews. Can i use zepto as an alternative to jQuery?

BorisMoore commented 9 years ago

Unfortunately, no. Zepto does not include all the features of jQuery that are used by JsViews. For example, JsViews uses the jQuery $.event.special feature to track all elements that are removed from the DOM - in order to dispose of data-link bindings on those elements. Zepto does not implement Zepto.event.special in its events module, (or, as far as I know, in any additional modules.)

organic-scholar commented 9 years ago

Ok i got it thanks.