10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
/* eslint-disable func-names*/
|
|
|
|
export default function handleRevealVariables() {
|
|
$('.js-reveal-variables')
|
|
.off('click')
|
|
.on('click', function () {
|
|
$('.js-build-variables').toggle();
|
|
$(this).hide();
|
|
});
|
|
}
|