Make WordPress Core


Ignore:
Timestamp:
12/23/2014 05:04:47 PM (10 years ago)
Author:
ocean90
Message:

Customizer: Improve IE 8 compatibility.

  • Use square bracket notation for default keywords.
  • Use Underscores indexOf for arrays.

props westonruter, ocean90.
fixes #30781 for trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-control.php

    r30885 r30991  
    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>
     
    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>
     
    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>
Note: See TracChangeset for help on using the changeset viewer.