diff options
| author | vlatka pavisic | 2016-11-09 15:04:07 +0100 | 
|---|---|---|
| committer | vlatka pavisic | 2016-11-09 15:04:07 +0100 | 
| commit | 56c0f55d2d8d566b931664b85c76dbe3a58e31cc (patch) | |
| tree | 717b761de93b13a72f6fde9fa05b5b7cf57131ec /app/helpers/routes_helper.rb | |
| parent | d67ed4c32b338070e4e4ff33f89fe64011e14c3b (diff) | |
| download | chouette-core-56c0f55d2d8d566b931664b85c76dbe3a58e31cc.tar.bz2 | |
Refs #1872 : Route direction and wayback enumerations
Diffstat (limited to 'app/helpers/routes_helper.rb')
| -rw-r--r-- | app/helpers/routes_helper.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/app/helpers/routes_helper.rb b/app/helpers/routes_helper.rb index b3d79262e..159c93054 100644 --- a/app/helpers/routes_helper.rb +++ b/app/helpers/routes_helper.rb @@ -6,11 +6,11 @@ module RoutesHelper    end    def fonticon_wayback(wayback) -    if wayback == "A" +    if wayback == 'straight_forward'        return '<i class="fa fa-arrow-right"></i>'.html_safe      else -      return '<i class="fa fa-arrow-left"></i>'.html_safe   +      return '<i class="fa fa-arrow-left"></i>'.html_safe      end    end -   +  end | 
