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

20 lines
627 B
JavaScript

// -----------------------------------------------------
//
// 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
}