added missing js function

This commit is contained in:
Massimiliano Assante 2023-03-08 15:21:47 +01:00
parent fa42e2d5fb
commit dc8566939d
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
function switchView(hideel, showel) {
$(hideel).hide();
$(showel).show();
}