5 lines
120 B
JavaScript
5 lines
120 B
JavaScript
import $ from 'jquery';
|
|
|
|
export function toggleCondidentielExplanation() {
|
|
$('.confidentiel-explanation').toggle();
|
|
}
|