├── .editorconfig ├── .gitignore ├── .jshintrc ├── README.md ├── gulpfile.js ├── license.txt ├── package.json └── src ├── css ├── main.css ├── modules │ ├── charts.css │ ├── datatable.css │ ├── header.css │ ├── map.css │ ├── metadata.css │ ├── oldie.css │ ├── search.css │ ├── slider.css │ ├── social.css │ ├── statboxes.css │ ├── tooltips.css │ └── variables.css ├── report.css └── vendor │ ├── jquery-tourbus.css │ ├── jquery-ui-1.10.3.custom.css │ └── typeahead.css ├── fonts ├── fontello.eot ├── fontello.svg ├── fontello.ttf ├── fontello.woff ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── humans.txt ├── images ├── build │ ├── apple-touch-icon-precomposed.png │ ├── chosen-sprite.png │ ├── favicon.png │ ├── layers-2x.png │ ├── layers.png │ ├── legend-mean.png │ ├── legend-median.svg │ ├── marker-icon-2x.png │ ├── marker-icon.png │ ├── marker-shadow.png │ ├── report-logo.png │ ├── seals.png │ ├── ui-bg_highlight-soft_100_f9f9f9_1x100.png │ └── ui-bg_inset-hard_100_eeeeee_1x100.png └── source │ ├── Community.svg │ ├── QualityofLifeExplorerLogo.svg │ ├── data.svg │ ├── favicon.svg │ ├── icon.svg │ ├── legend-mean.svg │ ├── legend-median.svg │ ├── logo.svg │ └── marker.svg ├── index.html ├── report.html ├── scripts ├── functions │ ├── calculations.js │ ├── calculations │ │ ├── mean.js │ │ ├── median.js │ │ ├── sum.js │ │ └── weighted.js │ ├── charts.js │ ├── fetchdata.js │ ├── generics.js │ ├── map.js │ ├── metadata.js │ ├── metric.js │ ├── observer.js │ ├── search.js │ └── search.js.basic ├── main.js ├── report.js └── vendor │ ├── Chart.js │ ├── Object.observe.poly.js │ ├── jenks.js │ ├── jquery-tourbus.js │ ├── jquery-ui-1.10.3.custom.min.js │ ├── log.js │ ├── simple_statistics.js │ ├── table2CSV.js │ └── typeahead.js └── tests ├── app.js ├── index.html └── tests.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/gulpfile.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/main.css -------------------------------------------------------------------------------- /src/css/modules/charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/charts.css -------------------------------------------------------------------------------- /src/css/modules/datatable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/datatable.css -------------------------------------------------------------------------------- /src/css/modules/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/header.css -------------------------------------------------------------------------------- /src/css/modules/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/map.css -------------------------------------------------------------------------------- /src/css/modules/metadata.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/metadata.css -------------------------------------------------------------------------------- /src/css/modules/oldie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/oldie.css -------------------------------------------------------------------------------- /src/css/modules/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/search.css -------------------------------------------------------------------------------- /src/css/modules/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/slider.css -------------------------------------------------------------------------------- /src/css/modules/social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/social.css -------------------------------------------------------------------------------- /src/css/modules/statboxes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/statboxes.css -------------------------------------------------------------------------------- /src/css/modules/tooltips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/tooltips.css -------------------------------------------------------------------------------- /src/css/modules/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/modules/variables.css -------------------------------------------------------------------------------- /src/css/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/report.css -------------------------------------------------------------------------------- /src/css/vendor/jquery-tourbus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/vendor/jquery-tourbus.css -------------------------------------------------------------------------------- /src/css/vendor/jquery-ui-1.10.3.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/vendor/jquery-ui-1.10.3.custom.css -------------------------------------------------------------------------------- /src/css/vendor/typeahead.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/css/vendor/typeahead.css -------------------------------------------------------------------------------- /src/fonts/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/fontello.eot -------------------------------------------------------------------------------- /src/fonts/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/fontello.svg -------------------------------------------------------------------------------- /src/fonts/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/fontello.ttf -------------------------------------------------------------------------------- /src/fonts/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/fontello.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/humans.txt -------------------------------------------------------------------------------- /src/images/build/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /src/images/build/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/chosen-sprite.png -------------------------------------------------------------------------------- /src/images/build/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/favicon.png -------------------------------------------------------------------------------- /src/images/build/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/layers-2x.png -------------------------------------------------------------------------------- /src/images/build/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/layers.png -------------------------------------------------------------------------------- /src/images/build/legend-mean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/legend-mean.png -------------------------------------------------------------------------------- /src/images/build/legend-median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/legend-median.svg -------------------------------------------------------------------------------- /src/images/build/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/marker-icon-2x.png -------------------------------------------------------------------------------- /src/images/build/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/marker-icon.png -------------------------------------------------------------------------------- /src/images/build/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/marker-shadow.png -------------------------------------------------------------------------------- /src/images/build/report-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/report-logo.png -------------------------------------------------------------------------------- /src/images/build/seals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/seals.png -------------------------------------------------------------------------------- /src/images/build/ui-bg_highlight-soft_100_f9f9f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/ui-bg_highlight-soft_100_f9f9f9_1x100.png -------------------------------------------------------------------------------- /src/images/build/ui-bg_inset-hard_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/build/ui-bg_inset-hard_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/images/source/Community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/Community.svg -------------------------------------------------------------------------------- /src/images/source/QualityofLifeExplorerLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/QualityofLifeExplorerLogo.svg -------------------------------------------------------------------------------- /src/images/source/data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/data.svg -------------------------------------------------------------------------------- /src/images/source/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/favicon.svg -------------------------------------------------------------------------------- /src/images/source/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/icon.svg -------------------------------------------------------------------------------- /src/images/source/legend-mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/legend-mean.svg -------------------------------------------------------------------------------- /src/images/source/legend-median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/legend-median.svg -------------------------------------------------------------------------------- /src/images/source/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/logo.svg -------------------------------------------------------------------------------- /src/images/source/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/images/source/marker.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/index.html -------------------------------------------------------------------------------- /src/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/report.html -------------------------------------------------------------------------------- /src/scripts/functions/calculations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/calculations.js -------------------------------------------------------------------------------- /src/scripts/functions/calculations/mean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/calculations/mean.js -------------------------------------------------------------------------------- /src/scripts/functions/calculations/median.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/calculations/median.js -------------------------------------------------------------------------------- /src/scripts/functions/calculations/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/calculations/sum.js -------------------------------------------------------------------------------- /src/scripts/functions/calculations/weighted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/calculations/weighted.js -------------------------------------------------------------------------------- /src/scripts/functions/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/charts.js -------------------------------------------------------------------------------- /src/scripts/functions/fetchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/fetchdata.js -------------------------------------------------------------------------------- /src/scripts/functions/generics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/generics.js -------------------------------------------------------------------------------- /src/scripts/functions/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/map.js -------------------------------------------------------------------------------- /src/scripts/functions/metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/metadata.js -------------------------------------------------------------------------------- /src/scripts/functions/metric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/metric.js -------------------------------------------------------------------------------- /src/scripts/functions/observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/observer.js -------------------------------------------------------------------------------- /src/scripts/functions/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/search.js -------------------------------------------------------------------------------- /src/scripts/functions/search.js.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/functions/search.js.basic -------------------------------------------------------------------------------- /src/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/main.js -------------------------------------------------------------------------------- /src/scripts/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/report.js -------------------------------------------------------------------------------- /src/scripts/vendor/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/Chart.js -------------------------------------------------------------------------------- /src/scripts/vendor/Object.observe.poly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/Object.observe.poly.js -------------------------------------------------------------------------------- /src/scripts/vendor/jenks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/jenks.js -------------------------------------------------------------------------------- /src/scripts/vendor/jquery-tourbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/jquery-tourbus.js -------------------------------------------------------------------------------- /src/scripts/vendor/jquery-ui-1.10.3.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/jquery-ui-1.10.3.custom.min.js -------------------------------------------------------------------------------- /src/scripts/vendor/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/log.js -------------------------------------------------------------------------------- /src/scripts/vendor/simple_statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/simple_statistics.js -------------------------------------------------------------------------------- /src/scripts/vendor/table2CSV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/table2CSV.js -------------------------------------------------------------------------------- /src/scripts/vendor/typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/scripts/vendor/typeahead.js -------------------------------------------------------------------------------- /src/tests/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/tests/app.js -------------------------------------------------------------------------------- /src/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/tests/index.html -------------------------------------------------------------------------------- /src/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobinbradley/Mecklenburg-County-Quality-of-Life-Dashboard/HEAD/src/tests/tests.js --------------------------------------------------------------------------------