Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_variables.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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();
  });
});