| 123456789101112131415161718 |
- window.addEvent('domready', function() {
- var table = $('expensive');
- ykill.api('/top/cost', function(kills) {
- kills.each(function(kill) {
- table.grab(new Element('tr').adopt(
- new Element('td').grab(ykill.portrait(kill['ship_type_id'], kill['ship_name'], 'type', '_32.png')),
- new Element('td', {'html': kill['ship_name']}),
- new Element('td', {'html': kill['system_name'] + ' (' + kill['security'].toFixed(1) + ')'}),
- new Element('td').grab(
- new Element('a', {
- 'href': '/kill/' + kill['kill_id'],
- 'html': ykill.format_billions(kill['cost'])
- })
- )
- ));
- });
- });
- });
|