1
0
Fork 0
mirror of https://github.com/marty-oehme/scripts.git synced 2024-11-14 05:48:08 +00:00

added some whitespaces

This commit is contained in:
Patrizio Bekerle 2018-07-25 15:23:52 +02:00 committed by GitHub
parent 80629bf338
commit c212b89eb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,7 @@ QtObject {
}
function pad(num, size) {
var s = num+"";
var s = num + "";
while (s.length < size) s = "0" + s;
return s;
}