Make WordPress Core

Ticket #30182: 30182.diff

File 30182.diff, 762 bytes (added by jtsternberg, 10 years ago)

replace hard-coded values w/ filtered defaults

  • src/wp-admin/js/color-picker.js

     
    1515                        change: false,
    1616                        clear: false,
    1717                        hide: true,
    18                         palettes: true
     18                        palettes: true,
     19                        width: 255,
     20                        mode: 'hsv'
    1921                },
    2022                _create: function() {
    2123                        // bail early for unsupported Iris.
     
    5153                        el.iris( {
    5254                                target: self.pickerContainer,
    5355                                hide: self.options.hide,
    54                                 width: 255,
    55                                 mode: 'hsv',
     56                                width: self.options.width,
     57                                mode: self.options.mode,
    5658                                palettes: self.options.palettes,
    5759                                change: function( event, ui ) {
    5860                                        self.toggler.css( { backgroundColor: ui.color.toString() } );