| 1 |
jQuery( function( $ ) { |
| 2 |
$( document ).on( 'smart-cf-setting-field-open', function( e, options ) { |
| 3 |
if ( $( options ).hasClass( 'smart-cf-field-options-colorpicker' ) ) { |
| 4 |
$( options ).find( '.default-option' ).each( function( i, e ) { |
| 5 |
$( e ).wpColorPicker(); |
| 6 |
} ); |
| 7 |
} |
| 8 |
} ); |
| 9 |
$( document ).on( 'smart-cf-setting-show-options', function( e, options ) { |
| 10 |
if ( $( options ).hasClass( 'smart-cf-field-options-colorpicker' ) ) { |
| 11 |
$( options ).find( '.default-option' ).each( function( i, e ) { |
| 12 |
$( e ).wpColorPicker(); |
| 13 |
} ); |
| 14 |
} |
| 15 |
} ); |
| 16 |
} ); |
| 17 |
|