55 lines
1.0 KiB
JavaScript
55 lines
1.0 KiB
JavaScript
/* global fusionBuilderText */
|
|
|
|
var FusionPageBuilder = FusionPageBuilder || {};
|
|
|
|
( function() {
|
|
|
|
|
|
jQuery( document ).ready( function() {
|
|
|
|
// Woo Related Component View.
|
|
FusionPageBuilder.fusion_tb_woo_related = FusionPageBuilder.WooProductsView.extend( {
|
|
|
|
/**
|
|
* Define shortcode handle.
|
|
*
|
|
* @since 3.2
|
|
*/
|
|
shortcode_handle: 'fusion_tb_woo_related',
|
|
|
|
/**
|
|
* Define shortcode classname.
|
|
*
|
|
* @since 3.2
|
|
*/
|
|
shortcode_classname: 'fusion-woo-related-tb',
|
|
|
|
/**
|
|
* Builds attributes.
|
|
*
|
|
* @since 3.2
|
|
* @param {Object} values - The values object.
|
|
* @return {Object}
|
|
*/
|
|
buildAttr: function( values ) {
|
|
var attr = FusionPageBuilder.WooProductsView.prototype.buildAttr.call( this, values );
|
|
|
|
attr[ 'class' ] += ' related products';
|
|
|
|
return attr;
|
|
},
|
|
|
|
/**
|
|
* Get section title based on the post type.
|
|
*
|
|
* @since 3.2
|
|
* @return {string}
|
|
*/
|
|
getSectionTitle: function() {
|
|
return fusionBuilderText.related_products;
|
|
}
|
|
|
|
} );
|
|
} );
|
|
}( jQuery ) );
|