mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-11-07 04:42:54 -05:00
Added session timer to desktop and terminal.
This commit is contained in:
@@ -99,3 +99,6 @@ function random(max) { return Math.floor(Math.random() * max); }
|
||||
|
||||
// Trademarks
|
||||
function trademarks(x) { return x.replace(/\(R\)/g, '®').replace(/\(TM\)/g, '™'); }
|
||||
|
||||
// Pad a number with zeros on the left
|
||||
function zeroPad(num, c) { if (c == null) { c = 2; } var s = "00000000" + num; return s.substr(s.length - c); }
|
||||
Reference in New Issue
Block a user