PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 3.2.8.3
Pods – Custom Content Types and Fields v3.2.8.3
2.8.23.4 2.9.19.4 3.0.10.4 3.1.4.2 3.2.8.3 3.3.9.1 trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / ui / js / qtip.js
pods / ui / js Last commit date
blocks 2 weeks ago cleditor 2 weeks ago codemirror 2 weeks ago dfv 2 weeks ago marionette 2 weeks ago qtip 2 weeks ago selectWoo 2 weeks ago sprintf 2 weeks ago timepicker 2 weeks ago handlebars.js 2 weeks ago jquery.pods.js 2 weeks ago jquery.pods.upgrade.js 2 weeks ago pods-i18n.js 2 weeks ago pods-link-picker.js 2 weeks ago qtip.js 2 weeks ago react-jsx-runtime.js 2 weeks ago react-jsx-runtime.js.LICENSE.txt 2 weeks ago
qtip.js
35 lines
1 jQuery( document ).ready( function ( $ ) {
2
3 $( '.pods-qtip' ).each( function ( index, element ) {
4 $( element ).qtip( {
5 content: {
6 attr: 'alt'
7 },
8
9 style: {
10 classes: 'ui-tooltip-light ui-tooltip-shadow ui-tooltip-rounded'
11 },
12
13 show: {
14 effect: function ( offset ) {
15 $( this ).fadeIn( 'fast' );
16 }
17 },
18
19 hide: {
20 fixed: true,
21 delay: 300
22 },
23
24 position: {
25 container: $( element ).parent(),
26 my: 'bottom left',
27 adjust: {
28 y: -14
29 }
30 }
31 } );
32 } );
33
34 } );
35