Skip to content

Commit 7eb7c30

Browse files
committed
Pre Release
1 parent c116a2b commit 7eb7c30

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

public/default/js/admin-app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/assets/js_owl/admin/display/actions_form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Admin.Modules.register('display.actions_form', () => {
88
var result_timeout = $(self).attr('data-result-timeout') || 5000;
99

1010
var run_action = function() {
11-
let $datatable_wrapper = $(self).parents('.panel').find('.dataTables_wrapper'),
11+
let $datatable_wrapper = $(self).parents('.card').find('.dataTables_wrapper'),
1212
$checkboxes = $datatable_wrapper.find('.adminCheckboxRow').filter(':checked'),
1313
data = $(self).serialize() + '&' + $checkboxes.serialize();
1414

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
$(function () {
2-
$('[data-toggle="tooltip"]').tooltip()
3-
})
1+
Admin.Modules.register('helpers.tooltip', () => {
2+
jQuery(function () {
3+
jQuery('[data-toggle="tooltip"]').tooltip()
4+
})
5+
});

0 commit comments

Comments
 (0)