├── .gitignore ├── LICENSE ├── README.md ├── _examples_data ├── example.png ├── example_highres.png ├── prism │ ├── prism.css │ └── prism.js └── style.css ├── _img_sources ├── altitude.ai ├── heading.ai ├── horizon.ai ├── speed.ai └── vertical.ai ├── bower.json ├── css ├── flightindicators.css └── flightindicators.min.css ├── example.html ├── flightindicators.jquery.json ├── img ├── altitude_pressure.svg ├── altitude_ticks.svg ├── fi_box.svg ├── fi_circle.svg ├── fi_needle.svg ├── fi_needle_small.svg ├── fi_tc_airplane.svg ├── heading_mechanics.svg ├── heading_yaw.svg ├── horizon_back.svg ├── horizon_ball.svg ├── horizon_circle.svg ├── horizon_mechanics.svg ├── speed_mechanics.svg ├── turn_coordinator.svg └── vertical_mechanics.svg └── js ├── jquery.flightindicators.js └── jquery.flightindicators.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | README.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/README.md -------------------------------------------------------------------------------- /_examples_data/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_examples_data/example.png -------------------------------------------------------------------------------- /_examples_data/example_highres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_examples_data/example_highres.png -------------------------------------------------------------------------------- /_examples_data/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_examples_data/prism/prism.css -------------------------------------------------------------------------------- /_examples_data/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_examples_data/prism/prism.js -------------------------------------------------------------------------------- /_examples_data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_examples_data/style.css -------------------------------------------------------------------------------- /_img_sources/altitude.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_img_sources/altitude.ai -------------------------------------------------------------------------------- /_img_sources/heading.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_img_sources/heading.ai -------------------------------------------------------------------------------- /_img_sources/horizon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_img_sources/horizon.ai -------------------------------------------------------------------------------- /_img_sources/speed.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_img_sources/speed.ai -------------------------------------------------------------------------------- /_img_sources/vertical.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/_img_sources/vertical.ai -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/bower.json -------------------------------------------------------------------------------- /css/flightindicators.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/css/flightindicators.css -------------------------------------------------------------------------------- /css/flightindicators.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/css/flightindicators.min.css -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/example.html -------------------------------------------------------------------------------- /flightindicators.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/flightindicators.jquery.json -------------------------------------------------------------------------------- /img/altitude_pressure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/altitude_pressure.svg -------------------------------------------------------------------------------- /img/altitude_ticks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/altitude_ticks.svg -------------------------------------------------------------------------------- /img/fi_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/fi_box.svg -------------------------------------------------------------------------------- /img/fi_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/fi_circle.svg -------------------------------------------------------------------------------- /img/fi_needle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/fi_needle.svg -------------------------------------------------------------------------------- /img/fi_needle_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/fi_needle_small.svg -------------------------------------------------------------------------------- /img/fi_tc_airplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/fi_tc_airplane.svg -------------------------------------------------------------------------------- /img/heading_mechanics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/heading_mechanics.svg -------------------------------------------------------------------------------- /img/heading_yaw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/heading_yaw.svg -------------------------------------------------------------------------------- /img/horizon_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/horizon_back.svg -------------------------------------------------------------------------------- /img/horizon_ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/horizon_ball.svg -------------------------------------------------------------------------------- /img/horizon_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/horizon_circle.svg -------------------------------------------------------------------------------- /img/horizon_mechanics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/horizon_mechanics.svg -------------------------------------------------------------------------------- /img/speed_mechanics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/speed_mechanics.svg -------------------------------------------------------------------------------- /img/turn_coordinator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/turn_coordinator.svg -------------------------------------------------------------------------------- /img/vertical_mechanics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/img/vertical_mechanics.svg -------------------------------------------------------------------------------- /js/jquery.flightindicators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/js/jquery.flightindicators.js -------------------------------------------------------------------------------- /js/jquery.flightindicators.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebmatton/jQuery-Flight-Indicators/HEAD/js/jquery.flightindicators.min.js --------------------------------------------------------------------------------