1
0

nightly commit

This commit is contained in:
2021-02-08 22:30:01 +08:00
parent 51d607a6bb
commit d3d7731aff
9 changed files with 563 additions and 332 deletions

View File

@@ -43,4 +43,10 @@ function LineBreaker2Br(strl) {
function IsUndefinedOrEmpty(data) {
return (typeof(data) == 'undefined' || data == "");
}
function SmarterShowHide(boolean, element) {
if (typeof(element) == 'undefined') return;
if (boolean) element.show();
else element.hide();
}