File: /home/undanet/www/wp-content/themes/panoramic/trt-customize-pro/customize-controls.js
( function( api ) {
// Extends our custom "panoramic" section.
api.sectionConstructor['panoramic'] = api.Section.extend( {
// No events for this type of section.
attachEvents: function () {},
// Always make the section active.
isContextuallyActive: function () {
return true;
}
} );
var api_inter_link = wp.customize;
api_inter_link.bind('ready', function() {
jQuery(['control', 'section', 'panel']).each(function(i, type) {
jQuery('a[rel="tc-'+type+'"]').click(function(e) {
e.preventDefault();
var id = jQuery(this).attr('href').replace('#', '');
if(api_inter_link[type].has(id)) {
api_inter_link[type].instance(id).focus();
}
});
});
});
} )( wp.customize );