This repository was archived by the owner on Jul 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ var EventHandler = {
301301 Data . state . self . characterName = self . characterName ;
302302 Data . state . self . characterId = self . characterId ;
303303 Data . state . self . key = self . key ;
304- Data . ui . bottomMenu_pilotKey . find ( 'i' ) . after ( " " + Data . state . self . key ) ;
304+ Data . ui . bottomMenu_pilotKey . html ( '<i class="fa fa-key"></i> ' + Data . state . self . key ) ;
305305 if ( self . systemId ) this . statusSelfSystem ( self ) ;
306306 } ,
307307
Original file line number Diff line number Diff line change @@ -188,7 +188,12 @@ Handlebars.logger.level = 0;
188188Handlebars . registerHelper ( 'hud_status_text' , UI . hud_status_text ) ;
189189
190190Handlebars . registerHelper ( 'hud_neighbor_status' , function ( id , name ) {
191- return UI . hud_status_text ( SystemMap . system_color ( { id : id , name : name } ) ) ;
191+ var status = SystemMap . system_color ( { id : id , name : name } ) ;
192+
193+ if ( status == 'clear' ) return 'check-circle' ;
194+ else if ( status == 'warning' ) return 'exclamation-triangle' ;
195+ else if ( status == 'hostile' ) return 'crosshairs fa-spin fa-2x' ;
196+ else return 'question-circle' ;
192197} ) ;
193198
194199Handlebars . registerHelper ( 'format_ts' , function ( ts ) {
Original file line number Diff line number Diff line change @@ -397,6 +397,9 @@ input.log-path {
397397 font-size : 3rem ;
398398}
399399
400+ # hud .fa {
401+ vertical-align : middle;
402+ }
400403 /*/
401404 / / MAP
402405 */
@@ -1283,7 +1286,7 @@ border-top: 0.16rem solid #333;
12831286*/
12841287
12851288.panel .start ,
1286- .linked ,
1289+ .linked ,
12871290# download ,
12881291# link ,
12891292# login {
Original file line number Diff line number Diff line change 66 <h3 >Vicinity</h3 >
77 <ul >
88 {{ #each vicinity }}
9- <li >{{ name }} : {{{ hud_neighbor_status id name }}} </li >
9+ <li >< i class = " fa fa- {{{ hud_neighbor_status id name }}} " ></ i > {{ name }} </li >
1010 {{ else }}
1111 <li >No Connecting Systems</li >
1212 {{ /each }}
1313 </ul >
1414 </div >
15-
15+
1616 <div class =" hostiles" >
1717 <h3 >Hostiles</h3 >
1818 <ul >
Original file line number Diff line number Diff line change 1- require ( 'newrelic' ) ;
1+ // require('newrelic');
22
33var express = require ( 'express' )
44 , debug = require ( 'debug' ) ( 'server' )
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ block content
5454 #bottom-menu-spinner .menu-button
5555 img( src ='/images/spinner.gif' , alt ='Processing...' )
5656 #bottom-menu-pilot-key
57- i.fa.fa-key ( title ="Pilot Key" )
5857 #bottom-menu-data-client .menu-button
5958 i.fa
6059 #bottom-menu-scan .menu-button
You can’t perform that action at this time.
0 commit comments