After the first click I want to change my .on() Method.
mySurface.on("touchstart",function(){
doSomething();
})
and after the first click I want to change it for example to:
mySurface.on("touchstart",function(){
doSomethingDifferent();
})
How can I overwrite my .on Method?