|
|
|
@ -22,7 +22,7 @@ function updateAge (el, timestamp) { |
|
|
|
|
let fromNow = timestamp.fromNow() |
|
|
|
|
// show the exact time only for transaction details page. Otherwise, short entry
|
|
|
|
|
const elInTile = el.hasAttribute('in-tile') |
|
|
|
|
if (!elInTile) { |
|
|
|
|
if ((window.location.pathname.includes('/tx/') || window.location.pathname.includes('/blocks/')) && !elInTile) { |
|
|
|
|
const offset = moment().utcOffset() / 60 |
|
|
|
|
const sign = offset && Math.sign(offset) ? '+' : '-' |
|
|
|
|
const formatDate = `MMMM-DD-YYYY hh:mm:ss A ${sign}${offset} UTC` |
|
|
|
|