diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2021-05-30 20:50:45 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2021-05-30 20:50:45 +0200 | 
| commit | cc3954dd065b91ee2ce36044fcaf111873d0ae47 (patch) | |
| tree | 3460f9dde9a2b5f3070374bdf66248f9c4adaa9b | |
| parent | d7beb4e395ef15481a543ef8f9a6b91be000782c (diff) | |
remove no longer used "cancelled" class on departure elements
| -rw-r--r-- | templates/app.html.ep | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/templates/app.html.ep b/templates/app.html.ep index 142159a..9ac7304 100644 --- a/templates/app.html.ep +++ b/templates/app.html.ep @@ -43,9 +43,7 @@        data-moreinfo="<%= join(q{|}, map { ($_->[0]->isa('DateTime') ? $_->[0]->strftime('%H:%M') : $_->[0]) . ' ' . $_->[1] } @{ $departure->{moreinfo} // [] } ) %>"        data-routeprev="<%= join(q{|}, @{ $departure->{route_pre} // [] } ) %>"        data-routenext="<%= join(q{|}, @{ $departure->{route_post} // [] } ) %>" -%   my $extraclasses = q{};  %   if ($departure->{is_cancelled} or $departure->{departure_is_cancelled}) { -%     $extraclasses .= ' cancelled';        class="cancelled">  %   }  %   else { @@ -85,17 +83,17 @@        </div>  %   }  %   if ($departure->{sched_departure}) { -      <span class="dest <%= $extraclasses %>" aria-label="nach <%= $departure->{destination} %>"> +      <span class="dest" aria-label="nach <%= $departure->{destination} %>">  %=      $departure->{destination}        </span>  %   }  %   else { -      <span class="origin <%= $extraclasses %>" aria-label="von <%= $departure->{origin} %>"> +      <span class="origin" aria-label="von <%= $departure->{origin} %>">  %=      $departure->{origin}        </span>  %   }      <span class="time <%= ($show_realtime and $departure->{delay} and not -      $departure->{is_cancelled}) ? 'delayed' : q{} %> <%= $extraclasses %>"> +      $departure->{is_cancelled}) ? 'delayed' : q{} %>">  %   if (param('detailed')) {  %     my $arrow = '→';  %     if (not $departure->{sched_arrival}) { @@ -115,7 +113,7 @@  %=    $departure->{time}  %   }      </span> -    <span class="countdown <%= $extraclasses %>"> +    <span class="countdown">  %   if ($departure->{delay} and not $departure->{is_cancelled}) {  %     my $aria_delay = sprintf("Verspätung %d Minuten", $departure->{delay});  %     if ($show_realtime) { | 
