[QSO Input] Handles showing the gridsquare popover on focus

pull/1445/head
Peter Goodhall 2022-03-31 22:09:50 +01:00
rodzic 9fda6518e5
commit 65486c4974
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -2,9 +2,13 @@ $( document ).ready(function() {
$("#locator")
.popover({ placement: 'top', title: 'Gridsquare Formatting', content: "Enter multiple (4-digit) grids separated with commas. For example: IO77,IO78" })
.focus(function () {
$('#locator').popover('show');
})
.blur(function () {
$(this).popover('hide');
});
$('#locator').popover('hide');
});
$("#sat_name").change(function(){
var sat = $("#sat_name").val();
if (sat == "") {