7 lines
168 B
JavaScript
7 lines
168 B
JavaScript
/* eslint-disable */
|
|
$(function(){
|
|
$('.reveal-variables').off('click').on('click',function(){
|
|
$('.js-build').toggle().niceScroll();
|
|
$(this).hide();
|
|
});
|
|
});
|