diff options
author | raylu <raylu@gridium.com> | 2013-10-24 23:05:00 -0700 |
---|---|---|
committer | raylu <raylu@gridium.com> | 2013-10-24 23:05:00 -0700 |
commit | 3805dfe7bfcb9d41c074fa6d07fe300c243bf591 (patch) | |
tree | 75e73b5401ea6bd133fa79b9bbd584d4227f56bf /web/static/js/kill.js | |
parent | 0187a3f26bb44c1cfcdeb5dbdd2185db8e4ba48b (diff) | |
download | ykill-3805dfe7bfcb9d41c074fa6d07fe300c243bf591.tar.xz |
handle {ship,fleet} hangar, fix kill_time minute
Diffstat (limited to 'web/static/js/kill.js')
-rw-r--r-- | web/static/js/kill.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/static/js/kill.js b/web/static/js/kill.js index 7a5dea1..e1e601a 100644 --- a/web/static/js/kill.js +++ b/web/static/js/kill.js @@ -105,7 +105,10 @@ window.addEvent('domready', function() { new Element('td', {'html': ykill.format_isk(victim['ship_cost'])}) ) ); - var slots = ['subsystem', 'high', 'medium', 'low', 'rig', 'drone bay', 'cargo', 'special hold', 'implant', '???']; + var slots = [ + 'subsystem', 'high', 'medium', 'low', 'rig', 'drone bay', + 'cargo', 'special hold', 'ship hangar', 'fleet hangar', 'implant', '???' + ]; slots.each(function(slot) { if (!items[slot]) return; |