Yep, the board does that (moderates posts) automatically sometimes, usually it's spam. Often though (like in this case), it's just annoying.
OK, well you can override touch detection in the script then, that should do it. In the ddsmoothmenu.js file, about line 61 on your copy we see:
Code:
detecttouch: !!('ontouchstart' in window) || !!('ontouchstart' in document.documentElement) || !!window.ontouchstart || (!!window.Touch && !!window.Touch.length) || !!window.onmsgesturechange || (window.DocumentTouch && window.document instanceof window.DocumentTouch),
Change that to:
Code:
detecttouch: false, //!!('ontouchstart' in window) || !!('ontouchstart' in document.documentElement) || !!window.ontouchstart || (!!window.Touch && !!window.Touch.length) || !!window.onmsgesturechange || (window.DocumentTouch && window.document instanceof window.DocumentTouch),
By way of explanation, Chrome (and some others) are touch capable via various emulations and depending upon what device they run on. So, sometimes will test positive even with no touch input device. Touch defaults to click for this menu. By overriding that, all will be forced to have mouseover. OK I guess if you have a separate menu for mobile/touch.
Bookmarks