mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Merge pull request #13424 from snipe/bug/sc-23552
Fixed tooltip not loading on encrypted field lock icon on asset detail view
This commit is contained in:
commit
521961457d
|
@ -973,7 +973,12 @@
|
|||
|
||||
$(function () {
|
||||
|
||||
$('[data-tooltip="true"]').tooltip();
|
||||
// Invoke Bootstrap 3's tooltip
|
||||
$('[data-tooltip="true"]').tooltip({
|
||||
container: 'body',
|
||||
animation: true,
|
||||
});
|
||||
|
||||
$('[data-toggle="popover"]').popover();
|
||||
$('.select2 span').addClass('needsclick');
|
||||
$('.select2 span').removeAttr('title');
|
||||
|
|
|
@ -85,3 +85,12 @@
|
|||
</div>
|
||||
@endforeach
|
||||
@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>
|
||||
|
|
Loading…
Reference in a new issue