Don't init tooltips on mobile devices to avoid double tap
This commit is contained in:
@@ -296,7 +296,9 @@ new Vue({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
initTooltips () {
|
initTooltips () {
|
||||||
$('.tooltiptoggle').tooltip();
|
if (!this.mobileMode) {
|
||||||
|
$('.tooltiptoggle').tooltip();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
initFilterpanel () {
|
initFilterpanel () {
|
||||||
const $filterPanel = $('#filterpanel');
|
const $filterPanel = $('#filterpanel');
|
||||||
|
|||||||
Reference in New Issue
Block a user