summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/build_variables.js
blob: c955a9ac2ea8c067cee87c1ffc606ed7ae295e2b (plain)
1
2
3
4
5
6
7
8
/* 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();
  });
});