8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
/* eslint-disable func-names, prefer-arrow-callback, space-before-function-paren */
|
|
|
|
$(function() {
|
|
$('.reveal-variables').off('click').on('click', function() {
|
|
$('.js-build-variables').toggle();
|
|
$(this).hide();
|
|
});
|
|
});
|