--
You received this message because you are subscribed to the Google Groups "RightJS" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rightjs/-/lqxA31YZ3eYJ.
To post to this group, send email to rig...@googlegroups.com.
To unsubscribe from this group, send email to rightjs+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rightjs?hl=en.
$(document).on({
// preinitializing the sliders
ready: function() {
$$('.rui-slider').each(function(element) {
if (!(element instanceof Slider)) {
element = new Slider(element);
}
});
},
mousedown: document_mousedown,
touchstart: document_mousedown,
mousemove: document_mousemove,
touchmove: document_mousemove,
mouseup: document_mouseup,
touchend: document_mouseup
});.... it seems that the touch events have already been aliased, so you'd think they should work. Any idea why they wouldn't be?
cheers,
DAZ
--
You received this message because you are subscribed to the Google Groups "RightJS" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rightjs/-/9qVcL-EdLF8J.