Skip to content

Commit

Permalink
Removed ZTL transfer message
Browse files Browse the repository at this point in the history
  • Loading branch information
BMWENING committed Oct 24, 2024
1 parent fd26af0 commit 7492b01
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
11 changes: 0 additions & 11 deletions resources/views/my/facilityselect.blade.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
@extends('layout')
@section('title', 'Select Facility')
@section('content')
<div class="container" id="ztlalert" hidden>
<div class="alert alert-danger">
<strong><i class="fas fa-exclamation-triangle"></i> WARNING</strong> ZTL (Atlanta ARTCC) currently has a substantial training backlog</br>
By transferring here you acknowledge there may be a delay in or extended periods of time without training availability
</div>
</div>
<div class="container" id="znyalert" hidden>
<div class="alert alert-danger">
<strong><i class="fas fa-exclamation-triangle"></i> WARNING</strong> ZNY (New York ARTCC) currently has a substantial training backlog</br>
Expand Down Expand Up @@ -50,11 +44,6 @@
@push('scripts')
<script type="text/javascript">
function checkAlerts(facility) {
if (facility.value === "ZTL") {
document.getElementById('ztlalert').hidden = false;
}else{
document.getElementById('ztlalert').hidden = true;
}
if (facility.value === "ZNY") {
document.getElementById('znyalert').hidden = false;
}else{
Expand Down
11 changes: 0 additions & 11 deletions resources/views/my/transfer.blade.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
@extends('layout')
@section('title', 'Facility Transfer')
@section('content')
<div class="container" id="ztlalert" hidden>
<div class="alert alert-danger">
<strong><i class="fas fa-exclamation-triangle"></i> WARNING</strong> ZTL (Atlanta ARTCC) currently has a substantial training backlog</br>
By transferring here you acknowledge there may be a delay in or extended periods of time without training availability
</div>
</div>
<div class="container" id="znyalert" hidden>
<div class="alert alert-danger">
<strong><i class="fas fa-exclamation-triangle"></i> WARNING</strong> ZNY (New York ARTCC) currently has a substantial training backlog</br>
Expand Down Expand Up @@ -64,11 +58,6 @@
@push('scripts')
<script type="text/javascript">
function checkAlerts(facility) {
if (facility.value === "ZTL") {
document.getElementById('ztlalert').hidden = false;
}else{
document.getElementById('ztlalert').hidden = true;
}
if (facility.value === "ZNY") {
document.getElementById('znyalert').hidden = false;
}else{
Expand Down

0 comments on commit 7492b01

Please sign in to comment.