Don't init tooltips on mobile devices to avoid double tap

This commit is contained in:
Björn Fromme
2018-08-25 11:14:15 +02:00
parent 80b8cee265
commit fb8ae069e6
@@ -296,7 +296,9 @@ new Vue({
}
},
initTooltips () {
$('.tooltiptoggle').tooltip();
if (!this.mobileMode) {
$('.tooltiptoggle').tooltip();
}
},
initFilterpanel () {
const $filterPanel = $('#filterpanel');