| 1 |
jQuery( function( $ ) { |
| 2 |
$( '.smart-cf-meta-box-table' ).each( function( i, e ) { |
| 3 |
$( e ).find( '.smart-cf-colorpicker' ).each( function( i, e ) { |
| 4 |
if ( $( e ).attr( 'disabled' ) !== 'disabled' ) { |
| 5 |
$( e ).wpColorPicker(); |
| 6 |
} |
| 7 |
} ); |
| 8 |
} ); |
| 9 |
|
| 10 |
$( document ).on( 'smart-cf-after-add-group', function( e, obj ) { |
| 11 |
var parent = $( obj.button ).parents( '.smart-cf-meta-box-repeat-tables' ); |
| 12 |
parent.find( '.smart-cf-colorpicker' ).each( function( i, e ) { |
| 13 |
if ( $( e ).attr( 'disabled' ) !== 'disabled' ) { |
| 14 |
$( e ).wpColorPicker(); |
| 15 |
} |
| 16 |
} ); |
| 17 |
} ); |
| 18 |
} ); |
| 19 |
|