vamp
vamp
it can be made easier (using component binding that already presented in ko core)
what about complex selectors, like `#one .two` ?
smth like: ``` else if (jQuery){ return jQuery(select, componentNode); } else if (componentNode.querySelectorAll) { return componentNode.querySelectorAll(select); } else { return ko.transclusion.getElementsByTagName(select, componentNode); } ```
but - if array is collection of observables?
Maybe you want to solve your situation using css binding customization (in your own project without pull request)? ``` ko.bindingHandlers.css.update = (function(underlying){ return function(element, valueAccessor){ return underlying(element, function(){ var value...
subscription slow down when ko.deferred enabled, comparison: http://jsperf.com/ko-computed-vs-subscription http://jsperf.com/ko-computed-vs-subscription-deferred computed: 3x (cool!) but subscription: 0.5x
Cool! Great work!
maybe withlite can be renamed to "using"?
if 'click' binding added later (e.g. using ko.conventions), preprocess not working at all