BigW Consortium Gitlab

build_variables.js 232 Bytes
Newer Older
1
/* eslint-disable func-names*/
2

3 4 5 6 7 8 9 10
export default function handleRevealVariables() {
  $('.js-reveal-variables')
    .off('click')
    .on('click', function () {
      $('.js-build-variables').toggle();
      $(this).hide();
    });
}