diff --git a/public_html/extension.js b/public_html/extension.js
deleted file mode 100644
index f71fe17..0000000
--- a/public_html/extension.js
+++ /dev/null
@@ -1,19 +0,0 @@
-// -----------------------------------------------------
-//
-// This file is so users can modify how the page acts
-// without diving to deep in the code. This way we can
-// also try out or hold custom code for ourselves and
-// not check it into the repo.
-//
-// There is a div id'ed as plane_extension for use with
-// this javascript file.
-// -----------------------------------------------------
-
-function extendedInitalize() {
- // Write your initalization here
- // Gets called just before the 1-sec function call loop is setup
-}
-
-function extendedPulse() {
- // This will get called every second after all the main functions
-}
diff --git a/public_html/gmap.html b/public_html/gmap.html
index 20dc878..65344ab 100644
--- a/public_html/gmap.html
+++ b/public_html/gmap.html
@@ -8,8 +8,6 @@
-
-
@@ -44,7 +42,7 @@
|
- [ Settings ]
+
|
@@ -125,7 +123,6 @@
-
-
diff --git a/public_html/options.js b/public_html/options.js
deleted file mode 100644
index f4e3627..0000000
--- a/public_html/options.js
+++ /dev/null
@@ -1,17 +0,0 @@
-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");
-}
diff --git a/public_html/script.js b/public_html/script.js
index 12a3cf3..ddbe06d 100644
--- a/public_html/script.js
+++ b/public_html/script.js
@@ -247,12 +247,6 @@ function initialize_after_config() {
$('#dialog-modal').css('display', 'inline'); // Show hidden settings-windows content
});
- // Load up our options page
- optionsInitalize();
-
- // Did our crafty user need some setup?
- extendedInitalize();
-
// Setup our timer to poll from the server.
window.setInterval(fetchData, RefreshInterval);
window.setInterval(reaper, 60000);