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 |