├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc.extra.js ├── .gitignore ├── .stylintrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── nightwatch.conf.js ├── package.json ├── public ├── contribute.json ├── google3d1057c68ff035a9.html ├── img │ ├── icons │ │ ├── favicon-196.png │ │ └── favicon.ico │ ├── ogimage.png │ └── ogimage.xcf ├── index.html └── manifest.json ├── scripts └── generateVersionJSON.js └── src ├── components ├── containers │ ├── ChartContainer.jsx │ ├── CustomizableDateContainer.jsx │ ├── DashboardContainer.jsx │ ├── DataTableContainer.jsx │ ├── MetricOverviewContainer.jsx │ └── SummaryMetricContainer.jsx ├── decorators │ ├── withNextButton.jsx │ └── withTracker.jsx └── views │ ├── Application.jsx │ ├── Chart.jsx │ ├── Contact.jsx │ ├── CustomizableDate.jsx │ ├── Dashboard.jsx │ ├── DashboardSection.jsx │ ├── DataTable.jsx │ ├── Error.jsx │ ├── Footer.jsx │ ├── Header.jsx │ ├── Home.jsx │ ├── Main.jsx │ ├── MetricOverview.jsx │ ├── MetricOverviewCollection.jsx │ ├── NextButton.jsx │ ├── NotFound.jsx │ ├── Spinner.jsx │ ├── StripedHeader.jsx │ ├── SummaryMetric.jsx │ ├── css │ └── README │ ├── fonts │ └── FiraSans │ │ ├── firasansot-bold-webfont.eot │ │ ├── firasansot-bold-webfont.svg │ │ ├── firasansot-bold-webfont.ttf │ │ ├── firasansot-bold-webfont.woff │ │ ├── firasansot-bolditalic-webfont.eot │ │ ├── firasansot-bolditalic-webfont.svg │ │ ├── firasansot-bolditalic-webfont.ttf │ │ ├── firasansot-bolditalic-webfont.woff │ │ ├── firasansot-light-webfont.eot │ │ ├── firasansot-light-webfont.svg │ │ ├── firasansot-light-webfont.ttf │ │ ├── firasansot-light-webfont.woff │ │ ├── firasansot-lightitalic-webfont.eot │ │ ├── firasansot-lightitalic-webfont.svg │ │ ├── firasansot-lightitalic-webfont.ttf │ │ ├── firasansot-lightitalic-webfont.woff │ │ ├── firasansot-medium-webfont.eot │ │ ├── firasansot-medium-webfont.svg │ │ ├── firasansot-medium-webfont.ttf │ │ ├── firasansot-medium-webfont.woff │ │ ├── firasansot-mediumitalic-webfont.eot │ │ ├── firasansot-mediumitalic-webfont.svg │ │ ├── firasansot-mediumitalic-webfont.ttf │ │ ├── firasansot-mediumitalic-webfont.woff │ │ ├── firasansot-regular-webfont.eot │ │ ├── firasansot-regular-webfont.svg │ │ ├── firasansot-regular-webfont.ttf │ │ ├── firasansot-regular-webfont.woff │ │ ├── firasansot-regularitalic-webfont.eot │ │ ├── firasansot-regularitalic-webfont.svg │ │ ├── firasansot-regularitalic-webfont.ttf │ │ └── firasansot-regularitalic-webfont.woff │ ├── img │ ├── diagonal-line_yellow.png │ ├── moz-wordmark-light-reverse.svg │ └── social_logos_sprite.png │ └── styl │ ├── Application.styl │ ├── BrowserHacks.styl │ ├── Chart.styl │ ├── CustomizableDate.styl │ ├── Dashboard.styl │ ├── DashboardSection.styl │ ├── DataTable.styl │ ├── Footer.styl │ ├── Header.styl │ ├── Home.styl │ ├── LabelledSelector.styl │ ├── Metric.styl │ ├── MetricOverview.styl │ ├── NextButton.styl │ ├── Spinner.styl │ ├── StripedHeader.styl │ ├── SummaryMetric.styl │ └── includes │ └── lib.styl ├── config.json ├── index.jsx ├── lib ├── lazyLoad.jsx └── utils.js ├── registerServiceWorker.js ├── setupTests.js └── tests ├── jest ├── Dashboard.test.jsx └── MetricOverview.test.jsx └── nightwatch ├── basics.js ├── contact.js ├── dashboards ├── hardware.js ├── usage-behavior.js └── user-activity.js ├── footer.js ├── home.js ├── jsDisabled.js ├── menu.js ├── noindex.js ├── regionSelector.js ├── routes.js └── utils.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.eslintrc.extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/.eslintrc.extra.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/.stylintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/README.md -------------------------------------------------------------------------------- /nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/nightwatch.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/package.json -------------------------------------------------------------------------------- /public/contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/public/contribute.json -------------------------------------------------------------------------------- /public/google3d1057c68ff035a9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/public/google3d1057c68ff035a9.html -------------------------------------------------------------------------------- /public/img/icons/favicon-196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/public/img/icons/favicon-196.png -------------------------------------------------------------------------------- /public/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/public/img/icons/favicon.ico -------------------------------------------------------------------------------- /public/img/ogimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/public/img/ogimage.png -------------------------------------------------------------------------------- /public/img/ogimage.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/public/img/ogimage.xcf -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/generateVersionJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/scripts/generateVersionJSON.js -------------------------------------------------------------------------------- /src/components/containers/ChartContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/containers/ChartContainer.jsx -------------------------------------------------------------------------------- /src/components/containers/CustomizableDateContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/containers/CustomizableDateContainer.jsx -------------------------------------------------------------------------------- /src/components/containers/DashboardContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/containers/DashboardContainer.jsx -------------------------------------------------------------------------------- /src/components/containers/DataTableContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/containers/DataTableContainer.jsx -------------------------------------------------------------------------------- /src/components/containers/MetricOverviewContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/containers/MetricOverviewContainer.jsx -------------------------------------------------------------------------------- /src/components/containers/SummaryMetricContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/containers/SummaryMetricContainer.jsx -------------------------------------------------------------------------------- /src/components/decorators/withNextButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/decorators/withNextButton.jsx -------------------------------------------------------------------------------- /src/components/decorators/withTracker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/decorators/withTracker.jsx -------------------------------------------------------------------------------- /src/components/views/Application.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Application.jsx -------------------------------------------------------------------------------- /src/components/views/Chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Chart.jsx -------------------------------------------------------------------------------- /src/components/views/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Contact.jsx -------------------------------------------------------------------------------- /src/components/views/CustomizableDate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/CustomizableDate.jsx -------------------------------------------------------------------------------- /src/components/views/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Dashboard.jsx -------------------------------------------------------------------------------- /src/components/views/DashboardSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/DashboardSection.jsx -------------------------------------------------------------------------------- /src/components/views/DataTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/DataTable.jsx -------------------------------------------------------------------------------- /src/components/views/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Error.jsx -------------------------------------------------------------------------------- /src/components/views/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Footer.jsx -------------------------------------------------------------------------------- /src/components/views/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Header.jsx -------------------------------------------------------------------------------- /src/components/views/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Home.jsx -------------------------------------------------------------------------------- /src/components/views/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Main.jsx -------------------------------------------------------------------------------- /src/components/views/MetricOverview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/MetricOverview.jsx -------------------------------------------------------------------------------- /src/components/views/MetricOverviewCollection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/MetricOverviewCollection.jsx -------------------------------------------------------------------------------- /src/components/views/NextButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/NextButton.jsx -------------------------------------------------------------------------------- /src/components/views/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/NotFound.jsx -------------------------------------------------------------------------------- /src/components/views/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/Spinner.jsx -------------------------------------------------------------------------------- /src/components/views/StripedHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/StripedHeader.jsx -------------------------------------------------------------------------------- /src/components/views/SummaryMetric.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/SummaryMetric.jsx -------------------------------------------------------------------------------- /src/components/views/css/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/css/README -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-bold-webfont.eot -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-bold-webfont.svg -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-bold-webfont.ttf -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-bold-webfont.woff -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-bolditalic-webfont.eot -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-bolditalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-bolditalic-webfont.svg -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-bolditalic-webfont.woff -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-light-webfont.eot -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-light-webfont.svg -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-light-webfont.ttf -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-light-webfont.woff -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-lightitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-lightitalic-webfont.eot -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-lightitalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-lightitalic-webfont.svg -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-lightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-lightitalic-webfont.woff -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-medium-webfont.eot -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-medium-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-medium-webfont.svg -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-medium-webfont.ttf -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-medium-webfont.woff -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-mediumitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-mediumitalic-webfont.eot -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-mediumitalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-mediumitalic-webfont.svg -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-mediumitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-mediumitalic-webfont.ttf -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-mediumitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-mediumitalic-webfont.woff -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-regular-webfont.eot -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-regular-webfont.svg -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-regular-webfont.ttf -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-regular-webfont.woff -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-regularitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-regularitalic-webfont.eot -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-regularitalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-regularitalic-webfont.svg -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-regularitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-regularitalic-webfont.ttf -------------------------------------------------------------------------------- /src/components/views/fonts/FiraSans/firasansot-regularitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/fonts/FiraSans/firasansot-regularitalic-webfont.woff -------------------------------------------------------------------------------- /src/components/views/img/diagonal-line_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/img/diagonal-line_yellow.png -------------------------------------------------------------------------------- /src/components/views/img/moz-wordmark-light-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/img/moz-wordmark-light-reverse.svg -------------------------------------------------------------------------------- /src/components/views/img/social_logos_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/img/social_logos_sprite.png -------------------------------------------------------------------------------- /src/components/views/styl/Application.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/Application.styl -------------------------------------------------------------------------------- /src/components/views/styl/BrowserHacks.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/BrowserHacks.styl -------------------------------------------------------------------------------- /src/components/views/styl/Chart.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/Chart.styl -------------------------------------------------------------------------------- /src/components/views/styl/CustomizableDate.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/CustomizableDate.styl -------------------------------------------------------------------------------- /src/components/views/styl/Dashboard.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/Dashboard.styl -------------------------------------------------------------------------------- /src/components/views/styl/DashboardSection.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/DashboardSection.styl -------------------------------------------------------------------------------- /src/components/views/styl/DataTable.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/DataTable.styl -------------------------------------------------------------------------------- /src/components/views/styl/Footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/Footer.styl -------------------------------------------------------------------------------- /src/components/views/styl/Header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/Header.styl -------------------------------------------------------------------------------- /src/components/views/styl/Home.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/Home.styl -------------------------------------------------------------------------------- /src/components/views/styl/LabelledSelector.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/LabelledSelector.styl -------------------------------------------------------------------------------- /src/components/views/styl/Metric.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/Metric.styl -------------------------------------------------------------------------------- /src/components/views/styl/MetricOverview.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/MetricOverview.styl -------------------------------------------------------------------------------- /src/components/views/styl/NextButton.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/NextButton.styl -------------------------------------------------------------------------------- /src/components/views/styl/Spinner.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/Spinner.styl -------------------------------------------------------------------------------- /src/components/views/styl/StripedHeader.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/StripedHeader.styl -------------------------------------------------------------------------------- /src/components/views/styl/SummaryMetric.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/SummaryMetric.styl -------------------------------------------------------------------------------- /src/components/views/styl/includes/lib.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/components/views/styl/includes/lib.styl -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/config.json -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/lib/lazyLoad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/lib/lazyLoad.jsx -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/tests/jest/Dashboard.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/jest/Dashboard.test.jsx -------------------------------------------------------------------------------- /src/tests/jest/MetricOverview.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/jest/MetricOverview.test.jsx -------------------------------------------------------------------------------- /src/tests/nightwatch/basics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/basics.js -------------------------------------------------------------------------------- /src/tests/nightwatch/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/contact.js -------------------------------------------------------------------------------- /src/tests/nightwatch/dashboards/hardware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/dashboards/hardware.js -------------------------------------------------------------------------------- /src/tests/nightwatch/dashboards/usage-behavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/dashboards/usage-behavior.js -------------------------------------------------------------------------------- /src/tests/nightwatch/dashboards/user-activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/dashboards/user-activity.js -------------------------------------------------------------------------------- /src/tests/nightwatch/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/footer.js -------------------------------------------------------------------------------- /src/tests/nightwatch/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/home.js -------------------------------------------------------------------------------- /src/tests/nightwatch/jsDisabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/jsDisabled.js -------------------------------------------------------------------------------- /src/tests/nightwatch/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/menu.js -------------------------------------------------------------------------------- /src/tests/nightwatch/noindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/noindex.js -------------------------------------------------------------------------------- /src/tests/nightwatch/regionSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/regionSelector.js -------------------------------------------------------------------------------- /src/tests/nightwatch/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/routes.js -------------------------------------------------------------------------------- /src/tests/nightwatch/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/ensemble/HEAD/src/tests/nightwatch/utils.js --------------------------------------------------------------------------------