Skip to content

Commit

Permalink
Pre Release
Browse files Browse the repository at this point in the history
  • Loading branch information
daaner committed Jun 16, 2020
1 parent c116a2b commit 7eb7c30
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion public/default/js/admin-app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/assets/js_owl/admin/display/actions_form.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Admin.Modules.register('display.actions_form', () => {
var result_timeout = $(self).attr('data-result-timeout') || 5000;

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

Expand Down
8 changes: 5 additions & 3 deletions resources/assets/js_owl/admin/tooltip.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
Admin.Modules.register('helpers.tooltip', () => {
jQuery(function () {
jQuery('[data-toggle="tooltip"]').tooltip()
})
});

0 comments on commit 7eb7c30

Please sign in to comment.