Merge remote-tracking branch 'origin/develop'

This commit is contained in:
snipe 2023-08-08 19:01:40 +01:00
commit 70903f068c
2 changed files with 15 additions and 1 deletions

View file

@ -973,7 +973,12 @@
$(function () { $(function () {
$('[data-tooltip="true"]').tooltip(); // Invoke Bootstrap 3's tooltip
$('[data-tooltip="true"]').tooltip({
container: 'body',
animation: true,
});
$('[data-toggle="popover"]').popover(); $('[data-toggle="popover"]').popover();
$('.select2 span').addClass('needsclick'); $('.select2 span').addClass('needsclick');
$('.select2 span').removeAttr('title'); $('.select2 span').removeAttr('title');

View file

@ -85,3 +85,12 @@
</div> </div>
@endforeach @endforeach
@endif @endif
<script nonce="{{ csrf_token() }}">
// We have to re-call the tooltip since this is pulled in after the DOM has loaded
$('[data-tooltip="true"]').tooltip({
container: 'body',
animation: true,
});
</script>