aowow/template/listviews/vendorRestockCol.tpl.php
Sarjuuk 04e55b5498 NPCs/Vendors
* show restock time if available
2022-03-25 16:41:49 +01:00

14 lines
285 B
PHP

var _ = {
id: 'restock',
name: LANG.restock,
width: '10%',
value: 'restock',
after: 'stack',
compute: function(data, td) {
if (data.restock) {
let t = g_formatTimeElapsed(data.restock);
$WH.ae(td, $WH.ct(t));
}
}
};