BigW Consortium Gitlab

build_variables.js 230 Bytes
Newer Older
1
import $ from 'jquery';
2

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