PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 3.2.5
Pods – Custom Content Types and Fields v3.2.5
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 1 year ago cleditor 4 years ago codemirror 2 years ago dfv 1 year ago marionette 7 years ago qtip 5 years ago selectWoo 5 years ago sprintf 8 years ago timepicker 8 years ago handlebars.js 8 years ago jquery.pods.js 3 years ago jquery.pods.upgrade.js 5 years ago pods-i18n.js 8 years ago pods-link-picker.js 8 years ago qtip.js 3 years 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