From 220e20d20847383a9bf8721d0fba8d5fb76e8cd2 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 18 Apr 2023 01:02:36 -0700 Subject: [PATCH] Changed tooltip invocation Signed-off-by: snipe --- resources/views/layouts/default.blade.php | 2 +- resources/views/partials/bootstrap-table.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/layouts/default.blade.php b/resources/views/layouts/default.blade.php index 37554e6a8..18419caab 100644 --- a/resources/views/layouts/default.blade.php +++ b/resources/views/layouts/default.blade.php @@ -974,7 +974,7 @@ $(function () { - $('[data-toggle="tooltip"]').tooltip(); + $('[data-tooltip="true"]').tooltip(); $('[data-toggle="popover"]').popover(); $('.select2 span').addClass('needsclick'); $('.select2 span').removeAttr('title'); diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 3697e7f72..ccb3963a6 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -94,7 +94,7 @@ exportTypes: ['xlsx', 'excel', 'csv', 'pdf','json', 'xml', 'txt', 'sql', 'doc' ], onLoadSuccess: function () { - $('[data-toggle="tooltip"]').tooltip(); // Needed to attach tooltips after ajax call + $('[data-tooltip="true"]').tooltip(); // Needed to attach tooltips after ajax call } });