PluginProbe ʕ •ᴥ•ʔ
Products Compare for WooCommerce / 3.6.2.6
Products Compare for WooCommerce v3.6.2.6
3.6.2.8 3.6.2.7 trunk 1.0.1 1.0.10 1.0.10.1 1.0.11 1.0.11.1 1.0.12 1.0.13 1.0.13.1 1.0.2 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 3.5 3.5.0.1 3.5.0.2 3.5.1 3.5.1.1 3.5.1.2 3.5.1.3 3.5.1.4 3.5.1.5 3.5.1.6 3.5.1.7 3.5.2 3.5.2.1 3.5.2.2 3.5.2.3 3.5.3 3.5.4 3.5.5 3.5.6 3.5.7 3.5.7.1 3.5.7.2 3.5.7.3 3.5.7.4 3.5.7.5 3.5.7.6 3.5.7.7 3.5.7.8 3.5.7.9 3.5.8 3.5.9 3.6.0 3.6.1 3.6.2 3.6.2.1 3.6.2.2 3.6.2.3 3.6.2.4 3.6.2.5 3.6.2.6
products-compare-for-woocommerce / js / admin.js
products-compare-for-woocommerce / js Last commit date
admin.js 2 months ago jquery.cookie.js 2 months ago jquery.mousewheel.min.js 2 months ago products_compare.js 2 months ago
admin.js
16 lines
1 (function ($){
2 $(document).ready( function () {
3 $(document).on('click', '.berocket_compare_products_styler .all_theme_default', function (event) {
4 event.preventDefault();
5 $table = $(this).parents('table').first();
6 $table.find('.br_colorpicker_default').trigger('click');
7 $table.find('select').each( function( i, o ) {
8 $(o).val($(o).data('default'));
9 });
10 $table.find('input[type=text]').each( function( i, o ) {
11 $(o).val($(o).data('default'));
12 });
13 });
14 });
15 })(jQuery);
16