Merge pull request #2170

a3c620f restore height visibility enhancements (mmbyday)
This commit is contained in:
luigi1111
2019-06-21 14:27:26 -05:00
4 changed files with 92 additions and 2 deletions

View File

@@ -108,6 +108,10 @@ function epoch(){
return Math.floor((new Date).getTime()/1000);
}
function roundDownToNearestThousand(_num){
return Math.floor(_num/1000.0)*1000
}
function isAlpha(letter){ return letter.match(/^[A-Za-z0-9]+$/) !== null; }
function isLowerCaseChar(letter){ return letter === letter.toLowerCase(); }