Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<cfscript>
function hmsFormat(inp)
{
if(ArrayLen(Arguments) GT 1)
{
var str = ":" & Arguments[2];
}
else
{
var str = "";
}
if((inp LT 60) OR (ListLen(inp,":") EQ 2))
{
return inp & str;
}
var a = inp mod 60;
var b = (inp - a)/60;
if(a LT 10)
{
a = "0" & a;
}
return hmsFormat(b,a & str);
}
</cfscript>
#hmsFormat(int)#