8 lines
248 B
JavaScript
8 lines
248 B
JavaScript
wp.customize.sectionConstructor['pressbook-button'] = wp.customize.Section.extend( {
|
|
// No events for this type of section.
|
|
attachEvents: function() {},
|
|
|
|
// Always make the section active.
|
|
isContextuallyActive: function() { return true; }
|
|
} );
|