| 1 |
/* global jQuery */ |
| 2 |
|
| 3 |
( function ( $ ) { |
| 4 |
'use strict'; |
| 5 |
|
| 6 |
$( |
| 7 |
'#beyondwords-plugin-settings .beyondwords-setting-categories-all input' |
| 8 |
).on( 'change', function () { |
| 9 |
if ( this.checked ) { |
| 10 |
$( |
| 11 |
'#beyondwords-plugin-settings .beyondwords-setting-categories-term' |
| 12 |
).hide(); |
| 13 |
$( |
| 14 |
'#beyondwords-plugin-settings .beyondwords-setting-categories-term input' |
| 15 |
).prop( 'checked', false ); |
| 16 |
} else { |
| 17 |
$( |
| 18 |
'#beyondwords-plugin-settings .beyondwords-setting-categories-term' |
| 19 |
).show(); |
| 20 |
} |
| 21 |
} ); |
| 22 |
} )( jQuery ); |
| 23 |
|