I don't know if this helps, but here is a pointer.
- Use a library such as Hammer.js to receive multi-touch actions.
- Write your own binding handler and call the default event binding for the knockout. something like this for a napkin. (violin author uses tap.js)
http://jsfiddle.net/snaptopixel/spByj/
now everything you do in your html
<button data-bind="tap:doSomething">Click Me</button>
where doSomething is a function.
source share