mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
|
( function ( $ ) {
|
||
|
|
||
|
$( document ).ready( function () {
|
||
|
// reset options to defaults if needed
|
||
|
$( document ).on( 'click', '.reset_mc_settings', function () {
|
||
|
return confirm( mcArgsSettings.resetToDefaults );
|
||
|
} );
|
||
|
|
||
|
} );
|
||
|
|
||
|
} )( jQuery );
|