blocks
6 days ago
cleditor
6 days ago
codemirror
6 days ago
dfv
6 days ago
marionette
6 days ago
qtip
6 days ago
selectWoo
6 days ago
sprintf
6 days ago
timepicker
6 days ago
handlebars.js
6 days ago
jquery.pods.js
6 days ago
jquery.pods.upgrade.js
6 days ago
pods-i18n.js
6 days ago
pods-link-picker.js
6 days ago
qtip.js
6 days 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 |