File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 11<!DOCTYPE html>
22< html >
3-
43< head >
54 < meta charset ="utf-8 ">
65 < meta name ="viewport " content ="initial-scale=1.0, maximum-scale=2.0 ">
229228 var spdata = _ . filter ( datareverse , function ( o ) { return o [ 6 ] === 'X' } )
230229 var lastrel = ''
231230 _ . forEach ( spdata , function ( el , i ) {
232- if ( el [ 2 ] != lastrel && el [ 1 ] . indexOf ( 'Retired' ) ! = - 1 ) {
231+ if ( el [ 2 ] != lastrel && el [ 1 ] . indexOf ( 'Retired' ) == = - 1 ) {
233232 results [ el [ 0 ] ] [ 8 ] = 'X'
234233 lastrel = el [ 2 ]
235234 }
236235 } )
237236 var cudata = _ . filter ( datareverse , function ( o ) { return o [ 7 ] === 'X' } )
238237 var lastrel = ''
239238 _ . forEach ( cudata , function ( el , i ) {
240- if ( el [ 2 ] + el [ 3 ] != lastrel && el [ 1 ] . indexOf ( 'Retired' ) != - 1 ) {
239+ if ( el [ 2 ] + el [ 3 ] != lastrel && el [ 1 ] . indexOf ( 'Retired' ) === - 1 ) {
241240 results [ el [ 0 ] ] [ 9 ] = 'X'
242241 lastrel = el [ 2 ] + el [ 3 ]
243242 }
You can’t perform that action at this time.
0 commit comments