From fe13730f7b3a07dd00453a90abcc15c9bc4e5ed1 Mon Sep 17 00:00:00 2001 From: iFargle Date: Tue, 21 Mar 2023 20:47:11 +0900 Subject: [PATCH] test --- static/js/custom.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/js/custom.js b/static/js/custom.js index bdc7adc..e0cc638 100644 --- a/static/js/custom.js +++ b/static/js/custom.js @@ -30,13 +30,13 @@ $(document).ready(function() { }); function show_search() { - $('#nav-search').removeClass('hide', 500); - $('#nav-content').addClass('hide', 500); + $('#nav-search').removeClass('hide'); + $('#nav-content').addClass('hide'); } function hide_search() { - $('#nav-search').addClass('hide', 500); - $('#nav-content').removeClass('hide', 500); + $('#nav-search').addClass('hide'); + $('#nav-content').removeClass('hide'); }