Max Topham

Results 4 comments of Max Topham

Perhaps the ability to provide a regex and any matches could be ignored? I will also point out that the official Bionic Reading API does accept HTML content and correctly...

I had a quick look at your source, your right it does not seem to be a simple change. I think how I would implement it would be to create...

+1 on this. I've implemented for myself as `ensureObservable`. ``` ko.utils.ensureObservable = (potentialObservable) => { return ko.isObservable(potentialObservable) ? potentialObservable : ko.observable(potentialObservable); } ```

Hey thank you for getting this done, honestly not 'late' at all. So far it is all working great. If all goes well we'll be adding this as an optional...