home.js 614 B

123456789101112131415161718
  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', {'html': kill['system_name'] + ' (' + kill['security'].toFixed(1) + ')'}),
  9. new Element('td').grab(
  10. new Element('a', {
  11. 'href': '/kill/' + kill['kill_id'],
  12. 'html': ykill.format_billions(kill['cost'])
  13. })
  14. )
  15. ));
  16. });
  17. });
  18. });