Skip to content

Commit 38953ce

Browse files
fix spelling
1 parent d32bc21 commit 38953ce

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
# Aviation Search
22

3-
A web appliciation that gives you weather data based on the inputted ICATO Airport Code. Created with Bootstrap, JavaScript, and HTML/CSS. Hosted online [here](https://tim-steg.github.io/aviationsearch/).
3+
A web appliciation that gives you weather data based on the inputted ICAO Airport Code. Created with Bootstrap, JavaScript, and HTML/CSS. Hosted online [here](https://tim-steg.github.io/aviationsearch/).
44

5-
Example ICATO Codes: KHUF, KORD
5+
Example ICAO Codes: KHUF, KORD
66

7-
# Current Bugs
8-
9-
'Raw Report' button does not work for the first attempt after clicking the search button a second time. Works again after clicking search again.
107

118
# TODO
129

1310
Add responsiveness (currently no mobile version).
11+
Add TAF reports (currently only METAR is supported).

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1 class="title-content">Aviation Weather Search</h1>
2121
<div class="input-group justify-content-center col-xs-4">
2222
<div class="search-input">
2323
<input type="hidden" name="search_param" value="all" id="search_param">
24-
<input type="text" class="form-control" id="main-input" placeholder="Enter ICATO code">
24+
<input type="text" class="form-control" id="main-input" placeholder="Enter ICAO code">
2525
</div>
2626
<span class="input-group-btn">
2727
<button class="btn btn-default search-btn" id="searchbutton" type="button"><span class="search-icon"><i class="fas fa-search"></i></span></button>

scripts/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const fetchInfo = async (airport) => {
3030
return { data };
3131
}
3232
catch (Error) {
33-
alert('Error: Failed to fetch data, please input an appropriate ICATO airport code. (Example: KORD)');
33+
alert('Error: Failed to fetch data, please input an appropriate ICAO airport code. (Example: KORD)');
3434
}
3535
};
3636

0 commit comments

Comments
 (0)