Rolling back a couple changes and spawning a branch from here.

This commit is contained in:
Brian Davenport 2013-05-30 21:26:16 +00:00
parent 21229d58ea
commit 072fba8718
3 changed files with 26 additions and 14 deletions
public_html

17
public_html/options.js Normal file
View file

@ -0,0 +1,17 @@
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");
}