-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove jquery from flight scripts
- Loading branch information
1 parent
e093717
commit 3176589
Showing
3 changed files
with
101 additions
and
81 deletions.
There are no files selected for viewing
35 changes: 18 additions & 17 deletions
35
resources/views/layouts/seven/flights/bids_aircraft.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
<div class="modal fade" id="bidModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="addBidLabel" aria-hidden="true"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h5 class="modal-title" id="bidModalLabel">Aircraft booking</h5> | ||
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close"> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
</div> | ||
<div class="modal-body"> | ||
<select name="" id="aircraft_select" class="bid_aircraft form-control"></select> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" id="without_aircraft" class="btn btn-secondary" data-bs-dismiss="modal">Don't book aircraft</button> | ||
<button type="button" id="with_aircraft" class="btn btn-primary" data-bs-dismiss="modal">Book aircraft</button> | ||
</div> | ||
<div class="modal fade" id="bidModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" | ||
aria-labelledby="addBidLabel" aria-hidden="true"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h5 class="modal-title" id="bidModalLabel">Aircraft booking</h5> | ||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> | ||
</div> | ||
<div class="modal-body"> | ||
<select name="" id="aircraft_select" class="bid_aircraft form-control"></select> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" id="without_aircraft" class="btn btn-secondary" data-bs-dismiss="modal">Don't | ||
book aircraft</button> | ||
<button type="button" id="with_aircraft" class="btn btn-primary" data-bs-dismiss="modal">Book | ||
aircraft</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters