home.js 541 B

1234567891011121314151617
  1. window.addEvent('domready', function() {
  2. var table = $('expensive');
  3. ykill.api('/top/cost', function(kills) {
  4. kills.each(function(kill) {
  5. table.grab(new Element('tr').adopt(
  6. new Element('td').grab(ykill.portrait(kill['ship_type_id'], kill['ship_name'], 'type', '_32.png')),
  7. new Element('td', {'html': kill['ship_name']}),
  8. new Element('td').grab(
  9. new Element('a', {
  10. 'href': '/kill/' + kill['kill_id'],
  11. 'html': ykill.format_isk(kill['cost'] / (100 * 1000 * 1000 * 1000))
  12. })
  13. )
  14. ));
  15. });
  16. });
  17. });