1
0

nightly commit

This commit is contained in:
2021-02-07 21:12:56 +08:00
parent c7f8c632ee
commit ce56b5bd43
8 changed files with 544 additions and 157 deletions

View File

@@ -39,4 +39,8 @@ function SetApiToken(value) {
function LineBreaker2Br(strl) {
return $('<div>').text(strl).html().replace(/\n/g,'<br />');
}
function IsUndefinedOrEmpty(data) {
return (typeof(data) == 'undefined' || data == "");
}