dziudek wrote:The menu file is from the Game template not from Storefront - please just apply the change mentioned by Cyberek.
Hi dziudek,
Done, commenting out, but not working on storefront. Anyting else I need to do?
Thanks and greetings from warm Spain
<!-- comment out -->
if(el.parent().hasClass('haschild') && jQuery('body').attr('data-tablet') !== null) {
el.click(function(e) {
if(el.attr("dblclick") === undefined) {
e.preventDefault();
e.stopPropagation();
el.attr("dblclick", new Date().getTime());
} else {
if(el.parent().find('div.childcontent').eq(0).css('overflow') === 'visible') {
window.location = el.attr('href');
}
var now = new Date().getTime();
if(now - el.attr("dblclick", 0) < 500) {
window.location = el.attr('href');
} else {
e.preventDefault();
e.stopPropagation();
el.attr("dblclick", new Date().getTime());
}
}
});
}
});
-->