Files
Zeitfresser-Wordpress-Theme/inc/blocks/includes/button/button.js
T
2026-04-20 22:55:59 +02:00

15 lines
362 B
JavaScript

(function (api) {
if (api != null) {
// Extends our custom "upgrade-to-pro" section.
api.sectionConstructor["button"] = api.Section.extend({
// No events for this type of section.
attachEvents: function () {},
// Always make the section active.
isContextuallyActive: function () {
return true;
},
});
} else {
}
})(wp.customize);