How to disable swipe events which were enabled previously by following code
var element = document.getElementById("test_el");
tau.event.enableGesture(element, new tau.event.gesture.Swipe(
{
orientation: "horizontal"
}));
element.addEventListener("swipe", function(e)
{
console.log("swipe = " + e.detail.direction);
})
How to Disable Gesture Events