PluginProbe
Smart Custom Fields / trunk
Smart Custom Fields vtrunk
1.5.1 1.5.2 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.7.0 2.0.0 2.0.1 2.1.0 2.1.1 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 3.0.0 3.0.1 3.1.0 3.1.1 3.1.2 All 68 releases
smart-custom-fields / js / settings-colorpicker.js

settings-colorpicker.js in Smart Custom Fields trunk, at js/settings-colorpicker.js

17 lines 553 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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