viz1090/dump1090/public_html/options.js
Nathan Matsuda 8d37c6eb30 added dump1090 fork
Former-commit-id: 1168f2733ad1b4e00a953fe21ddccebd8cb26135
2017-09-04 09:02:47 +00:00

18 lines
433 B
JavaScript

var listKMLType = ['Approch', 'Departure', 'Transit', 'Custom1', 'Custom2'];
var listKMLs = localStorage['listKMLs'] || [];
function optionsInitalize() {
// Write your initalization here
// Gets called just before the 1-sec function call loop is setup
$( "#dialog-modal" ).dialog({
height: 140,
modal: true,
autoOpen: false,
closeOnEscape: false
});
}
function optionsModal() {
$( "#dialog-modal" ).dialog( "open");
}