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: 99082b412e22ce3eb114904fa95f5adb2d9b9fe7 (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').toggle().niceScroll();
    $(this).hide();
  });
});