I have this code here:
var t
$('#camera').on("touchstart", function(e) {
event.preventDefault();
t = setTimeout(function(){ $("#filters").addClass("reveal-filters"); }, 1000);
});
$('#camera').on("touchend", function(e) {
clearTimeout(t);
});
I've successfully disabled the context menu but how can I remove this black box that appears in chrome when you touch and hold?
Thanks