PluginProbe
Powerkit – Supercharge your WordPress Site / trunk
Powerkit – Supercharge your WordPress Site vtrunk
3.1.1 3.1.0 3.0.9 3.0.8 trunk 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 All 87 releases
powerkit / assets / js / _scripts.js

_scripts.js in Powerkit – Supercharge your WordPress Site trunk, at assets/js/_scripts.js

18 lines 295 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Global Powerkit Scripts
3 */
4
5 jQuery( document ).ready( function( $ ) {
6
7 // ToolTip.
8 $( '.pk-tippy' ).each(function( index, element ) {
9 tippy( element, {
10 arrow: true,
11 interactive: true,
12 placement: 'bottom',
13 content: $( element ).find( '.pk-alert' ).html()
14 });
15 });
16
17 } );
18