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();
});
});
|