Michael Best

Results 149 comments of Michael Best

@Dmitri-Sintsov Have you seen [Knockout Punches](http://mbest.github.io/knockout.punches/)? Using it, you can do this: ```html ``` Or ```html ```

The standard dependency tracking in Knockout doesn't do well with a large dependency tree. That was the main motivation for adding "deferred updates". I see one of your examples that...

It's cool that you're digging into the Knockout code. I think in trying to follow the code path, you might have confused what ` var finish = limitFunction(function() {` does....

This is interesting, but we generally have to be careful when adding new interfaces. For example, `beforeAdd` would appear to be a parallel to `afterAdd`, but the way you've implemented...

I'd like to help get better support for using Knockout with Isotype. Can one of you put together some examples that work with @aknuds1's existing tools and demonstrate the desired...

So I had a go at creating a new Knockout-Isotope binding. Because of the issues with using the `foreach` binding, I did not try to use it. Instead, i decided...

While working and testing on this binding, I noticed that with the original binding, the Isotope view and the observableArray can get out of sync. If you use my links...

I chose not to fully copy your interface. Specifically, it wasn't important for my binding to know about filtering or other classes, and I allowed the caller to overwrite any...

Here, I'm proposing a simple "else" functionality, not "else if". Previous discussion at #283.

Standalone implementation (compatible with Knockout 3.0.0pre or 2.2+ with [Freedom](https://github.com/mbest/knockout-freedom) plugin): ``` javascript function cloneNodes(nodesArray, shouldCleanNodes) { for (var i = 0, j = nodesArray.length, newNodesArray = []; i <...