2018-10-10 14:53:59 +02:00
|
|
|
import { toggle } from '@utils';
|
2018-08-09 11:53:59 +02:00
|
|
|
|
2018-07-12 11:50:47 +02:00
|
|
|
export function toggleCondidentielExplanation() {
|
2018-10-10 14:53:59 +02:00
|
|
|
toggle(document.querySelector('.confidentiel-explanation'));
|
2018-07-12 11:50:47 +02:00
|
|
|
}
|
2018-11-29 17:03:32 +01:00
|
|
|
|
|
|
|
export function replaceSemicolonByComma(event) {
|
|
|
|
event.target.value = event.target.value.replace(/;/g, ',');
|
|
|
|
}
|