Files
CHIEFSOFT\ameye e9e5c0546c first commit
2023-11-30 13:20:54 -05:00

18 lines
295 B
JavaScript

/**
* Global Powerkit Scripts
*/
jQuery( document ).ready( function( $ ) {
// ToolTip.
$( '.pk-tippy' ).each(function( index, element ) {
tippy( element, {
arrow: true,
interactive: true,
placement: 'bottom',
content: $( element ).find( '.pk-alert' ).html()
});
});
} );