Ashley Question about jQuery Call
Hi, I found that touch plugin had mouse listener created by jQuery calls.
For example,
jQuery(document).mousemove(
(function (self) {
return function(info) {
self.onMouseMove(info);
};
})(this)
);
How does jQuery Calls in these new exporter? Will these jQuery Calls be ignored or...?