Restored Medium Flight Level

This commit is contained in:
Thomas Hounsell 2014-10-30 10:10:15 +00:00
parent 133163292d
commit 40f04a1013
2 changed files with 2 additions and 1 deletions

View File

@ -298,7 +298,7 @@ public enum LevelOfFlight
{
None = 0,
Low = 1,
//Medium = 2, - medium only ever appears to return the same as high atm, may change in future.
Medium = 2,
High = 3
}

View File

@ -12,6 +12,7 @@
Flight levels
<ul>
<li><a href="@Url.Action("flight", new { controller = "rss", id = "low" })" title="Low flight level"><i class="fa fa-sm fa-rss"></i> Low flight level</a></li>
<li><a href="@Url.Action("flight", new { controller = "rss", id = "medium" })" title="Medium flight level"><i class="fa fa-sm fa-rss"></i> Medium flight level</a></li>
<li><a href="@Url.Action("flight", new { controller = "rss", id = "high" })" title="High flight level"><i class="fa fa-sm fa-rss"></i> High flight level</a></li>
</ul>
</li>