|
@@ -766,7 +766,7 @@ $(function(){
|
|
|
$(".otherinfo .com-time").each(function(){
|
|
|
var thisValue = $(this).attr("data-value");
|
|
|
if(thisValue != "" && thisValue != "0" && thisValue != 0){
|
|
|
- var diff = formatTimestamp(Number(thisValue));
|
|
|
+ var diff = new Date(parseInt(thisValue*1000)).pattern('yyyy-MM-dd');
|
|
|
if(diff != null){
|
|
|
$(this).text(diff);
|
|
|
}
|