Change from 1 billion seconds to 172 million.

This commit is contained in:
Nathan
2015-03-21 16:41:29 +09:00
parent bc69233226
commit ec5b3e4b84

View File

@ -19,7 +19,7 @@ function hotRank(timeValue, rank) {
*/
var hotness;
var z = Math.log(rank) / Math.log(10);
hotness = z + (timeValue / 1728000000);
hotness = z + (timeValue / 172800000);
return hotness;
}