mirror of
https://github.com/flarum/core.git
synced 2025-10-12 07:24:27 +02:00
Keep post actions visible when controls dropdown is open
Also show without hover on touch devices
This commit is contained in:
@@ -77,7 +77,11 @@ export default function boot(app) {
|
||||
|
||||
// Initialize FastClick, which makes links and buttons much more responsive on
|
||||
// touch devices.
|
||||
$(() => FastClick.attach(document.body));
|
||||
$(() => {
|
||||
FastClick.attach(document.body)
|
||||
|
||||
$('body').addClass('ontouchstart' in window ? 'touch' : 'no-touch');
|
||||
});
|
||||
|
||||
app.booted = true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user