Add new component, add flags on filter

This commit is contained in:
Ludovic CANDELLIER
2022-05-09 23:14:50 +02:00
parent a70e8c39cf
commit 352b109e87
8 changed files with 184 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
@if(!defined('LOAD_TOOLTIP'))
@push('scripts')
<script>
function initTooltip() {
$('[data-toggle="tooltip"]').tooltip({
trigger : 'hover',
delay: { "show": 500, "hide": 100 }
});
}
</script>
@endpush
@php(define('LOAD_TOOLTIP', true))
@endif