mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
* those js snippets don't really care what namespace they are included in * .. why are they even php files...?
15 lines
285 B
PHP
15 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));
|
|
}
|
|
}
|
|
};
|