mirror of
https://github.com/uw935/vatsimfox.git
synced 2026-09-17 02:28:52 +00:00
Merge pull request #7 from uw935/fix/text-change
Small update - text change
This commit is contained in:
@@ -23,13 +23,14 @@ docker compose up
|
||||
## Contibution
|
||||
Any help with this project would be greatly appreciated. Fixes or some features are welcome.
|
||||
|
||||
More information about the contributing to this project will appear there a little later.
|
||||
VATSIM Fox is free software, open to suggestions and contributions. All the files are under the MIT License.
|
||||
|
||||
## Feature
|
||||
There is small TODO list I would like to make in this project:
|
||||
|
||||
- [x] Create docker
|
||||
- [x] Deploy to webserver with domain
|
||||
- [ ] Change viewer style to the map, where user could see his airports where he was as a pilot or an ATC.
|
||||
- [ ] More ATC information — add map with control area
|
||||
- [ ] More profile information — add some more info, not only date of registration. Maybe rating or something
|
||||
- [ ] Website redesign
|
||||
|
||||
@@ -120,7 +120,7 @@ function showFlight(flight) {
|
||||
|
||||
// Changing text in each class
|
||||
// FP before _ - means flightplan
|
||||
$(".fp_is_filed").text(flight["not_filed"] ? "This flightplan was not filed" : "");
|
||||
$(".fp_is_filed").text(flight["not_filed"] ? "This flightplan wasn't used" : "");
|
||||
$(".fp_callsign").text(flight["callsign"]);
|
||||
$(".fp_depa_city").text(airports[flight["dep"]]["city"]);
|
||||
$(".fp_arra_city").text(airports[flight["arr"]]["city"]);
|
||||
|
||||
Reference in New Issue
Block a user