Aucune description

customize-controls.js 324B

12345678910111213141516
  1. ( function( api ) {
  2. // Extends our custom "xshop-pro" section.
  3. api.sectionConstructor['xshop-pro'] = api.Section.extend( {
  4. // No events for this type of section.
  5. attachEvents: function () {},
  6. // Always make the section active.
  7. isContextuallyActive: function () {
  8. return true;
  9. }
  10. } );
  11. } )( wp.customize );