Make WordPress Core

Ticket #30781: 30781.2.diff

File 30781.2.diff, 2.5 KB (added by ocean90, 10 years ago)
  • src/wp-admin/js/customize-controls.js

     
    128128        api.utils.areElementListsEqual = function ( listA, listB ) {
    129129                var equal = (
    130130                        listA.length === listB.length && // if lists are different lengths, then naturally they are not equal
    131                         -1 === _.map( // are there any false values in the list returned by map?
     131                        -1 === _.indexOf( _.map( // are there any false values in the list returned by map?
    132132                                _.zip( listA, listB ), // pair up each element between the two lists
    133133                                function ( pair ) {
    134134                                        return $( pair[0] ).is( pair[1] ); // compare to see if each pair are equal
    135135                                }
    136                         ).indexOf( false ) // check for presence of false in map's return value
     136                        ), false ) // check for presence of false in map's return value
    137137                );
    138138                return equal;
    139139        };
  • src/wp-includes/class-wp-customize-control.php

     
    738738         */
    739739        public function content_template() {
    740740                ?>
    741                 <label for="{{ data.settings.default }}-button">
     741                <label for="{{ data.settings['default'] }}-button">
    742742                        <# if ( data.label ) { #>
    743743                                <span class="customize-control-title">{{ data.label }}</span>
    744744                        <# } #>
     
    775775                        </div>
    776776                        <div class="actions">
    777777                                <button type="button" class="button remove-button"><?php echo $this->button_labels['remove']; ?></button>
    778                                 <button type="button" class="button upload-button" id="{{ data.settings.default }}-button"><?php echo $this->button_labels['change']; ?></button>
     778                                <button type="button" class="button upload-button" id="{{ data.settings['default'] }}-button"><?php echo $this->button_labels['change']; ?></button>
    779779                                <div style="clear:both"></div>
    780780                        </div>
    781781                <# } else { #>
     
    794794                                <# if ( data.defaultAttachment ) { #>
    795795                                        <button type="button" class="button default-button"><?php echo $this->button_labels['default']; ?></button>
    796796                                <# } #>
    797                                 <button type="button" class="button upload-button" id="{{ data.settings.default }}-button"><?php echo $this->button_labels['select']; ?></button>
     797                                <button type="button" class="button upload-button" id="{{ data.settings['default'] }}-button"><?php echo $this->button_labels['select']; ?></button>
    798798                                <div style="clear:both"></div>
    799799                        </div>
    800800                <# } #>