Merge pull request #7 from uw935/fix/text-change

Small update - text change
This commit is contained in:
Mark
2024-02-11 00:56:48 +03:00
committed by GitHub
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -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
+1 -1
View File
@@ -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"]);