PluginProbe ʕ •ᴥ•ʔ
Music Player for WooCommerce / 1.0.194
Music Player for WooCommerce v1.0.194
1.8.3 1.8.2 1.8.1 1.1.10 1.1.11 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.10 1.3.11 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.5.0 1.5.1 1.6.0 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 trunk 1.0.173 1.0.174 1.0.175 1.0.176 1.0.177 1.0.178 1.0.179 1.0.180 1.0.181 1.0.182 1.0.183 1.0.184 1.0.185 1.0.186 1.0.187 1.0.188 1.0.189 1.0.190 1.0.191 1.0.192 1.0.193 1.0.194 1.0.195 1.0.196 1.0.197 1.1.0 1.1.1
music-player-for-woocommerce / js / admin.js
music-player-for-woocommerce / js Last commit date
admin.js 3 years ago public.js 3 years ago public_src.js 3 years ago
admin.js
29 lines
1 function wcmp_admin()
2 {
3 if(typeof wcmp_admin_evaluated != 'undefined') return;
4 wcmp_admin_evaluated = true;
5
6 var $ = jQuery;
7
8 // Special Radio
9 $( document ).on(
10 'mousedown',
11 '.wcmp_radio',
12 function()
13 {
14 $(this).data('status', this.checked);
15 }
16 );
17
18 $( document ).on(
19 'click',
20 '.wcmp_radio',
21 function()
22 {
23 this.checked = !$(this).data('status');
24 }
25 );
26 }
27
28 jQuery(wcmp_admin);
29 jQuery(window).on('load', wcmp_admin);