D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
raptqcnr
/
www
/
wp-content
/
themes
/
woodmart
/
inc
/
admin
/
assets
/
js
/
vc-fields
/
Filename :
button-set.js
back
Copy
(function($) { $('#vc_ui-panel-edit-element').on('vcPanel.shown', function() { $('.woodmart-vc-button-set').each(function() { var $this = $(this); var currentValue = $this.find('.woodmart-vc-button-set-value').val(); $this.find('[data-value="' + currentValue + '"]').addClass('xts-active'); }); $('.vc-button-set-item').on('click', function() { var $this = $(this); var value = $this.data('value'); $this.addClass('xts-active'); $this.siblings().removeClass('xts-active'); $this.parents('.woodmart-vc-button-set').find('.woodmart-vc-button-set-value').val(value).trigger('change'); }); }); })(jQuery);