mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
70903f068c
|
@ -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');
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue