Commit 99e2fbcc authored by Frank Bergmann's avatar Frank Bergmann

- Removed dead code

parent a89446e8
......@@ -179,7 +179,7 @@ Ext.define('PO.Utilities', {
YY = ((YYYY = d.getFullYear())+"").substr(2,2);
MM = (M = d.getMonth()+1) < 10 ? ('0'+M) : M;
DD = (D = d.getDate()) < 10 ? ('0'+D) : D;
th = (D >= 10&&D <= 20) ? 'th' : ((dMod = D%10) == 1) ? 'st' : (dMod == 2) ? 'nd' : (dMod == 3) ? 'rd' : 'th';
// th = (D >= 10 && D <= 20) ? 'th' : ((dMod = D % 10) == 1) ? 'st' : (dMod == 2) ? 'nd' : (dMod == 3) ? 'rd' : 'th';
hh = (h = d.getHours()) < 10 ? ('0'+h) : h;
mm = (m = d.getMinutes()) < 10 ? ('0'+m) : m;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment