├── .eslintrc.json ├── .github └── dependabot.yml ├── .gitignore ├── .prettierrc ├── .stylelintignore ├── .stylelintrc ├── CODE_OF_CONDUCT.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── bin ├── s3-sync.sh └── slack-notify.sh ├── package.json ├── public ├── 05b73cafcf0239f7f8e21864c494e94c.svg ├── 0beac26bfbe29230c3c64cda9c75028c.woff2 ├── 181dbb93717b56514d7846b0437ad1ee.svg ├── 41ba190cd1362fe75daac8165bc349e6.svg ├── 41c8922e0c9d9cde2ad1df0191200b6d.svg ├── 5eb757fe3bc41d00e95b2bfcd9ae9f18.svg ├── 72026b3c6a79bb1ed3d3124fd172de92.woff ├── 7535596a2ace7d84bbbcedfc8be7cde2.svg ├── 75d89c00a006b2d20ad4a7557b245ea0.svg ├── 7e4c05c9e1b440bb4bc0a50cfa49dc49.woff ├── 949efa25b9ed61ef9edb5c68936d54a2.svg ├── assets │ ├── 05b73cafcf0239f7f8e21864c494e94c.svg │ ├── 0beac26bfbe29230c3c64cda9c75028c.woff2 │ ├── 181dbb93717b56514d7846b0437ad1ee.svg │ ├── 41ba190cd1362fe75daac8165bc349e6.svg │ ├── 41c8922e0c9d9cde2ad1df0191200b6d.svg │ ├── 5eb757fe3bc41d00e95b2bfcd9ae9f18.svg │ ├── 72026b3c6a79bb1ed3d3124fd172de92.woff │ ├── 7535596a2ace7d84bbbcedfc8be7cde2.svg │ ├── 75d89c00a006b2d20ad4a7557b245ea0.svg │ ├── 7e4c05c9e1b440bb4bc0a50cfa49dc49.woff │ ├── 949efa25b9ed61ef9edb5c68936d54a2.svg │ ├── cc5b37feab537ddbf701e47180b15bda.svg │ ├── ce3a756dbc26ce21a07291affa06fef9.woff2 │ ├── d21c8a03dd6eecc729b176367f952bb4.svg │ ├── e091ac5d34b92c56fe4f075d57949691.svg │ ├── f9055252e116bda44cc349ecb3b9cc30.svg │ ├── favicon-114.png │ ├── favicon-144.png │ ├── favicon-32.png │ ├── favicon-57.png │ ├── favicon-72.png │ ├── hero-dna-graphic_1x.png │ ├── hero-dna-graphic_2x.png │ ├── mdn-web-docs-logo.svg │ └── opengraph-logo.png ├── cc5b37feab537ddbf701e47180b15bda.svg ├── ce3a756dbc26ce21a07291affa06fef9.woff2 ├── css │ ├── insights.css │ ├── insights.js │ ├── minimalist.css │ └── minimalist.js ├── d21c8a03dd6eecc729b176367f952bb4.svg ├── e091ac5d34b92c56fe4f075d57949691.svg ├── f9055252e116bda44cc349ecb3b9cc30.svg ├── index.html ├── js │ └── ga.js └── reports │ ├── assets │ ├── css │ │ ├── main.1ba6dce9.css │ │ ├── main.c42536bb.css │ │ └── web-testing-report.css │ ├── fonts │ │ ├── ZillaSlab-Bold.subset.woff │ │ ├── ZillaSlab-Bold.subset.woff2 │ │ ├── ZillaSlab-Regular.subset.woff │ │ └── ZillaSlab-Regular.subset.woff2 │ ├── images │ │ ├── Browser-Compatibility-Report-2020 │ │ │ ├── Design-Code-or-Both.svg │ │ │ ├── Hours-Per-Week-Spent-Coding-etc.svg │ │ │ ├── Overall-Satisfaction-With-Browser-Compatibility.svg │ │ │ ├── Overall-Satisfaction-With-the-Web.svg │ │ │ ├── Top-pain-point.svg │ │ │ ├── Top-pain-points-up-to-5-2.svg │ │ │ ├── Top-pain-points-up-to-5.svg │ │ │ ├── What-are-the-biggest-pain-points_-up-to-3.svg │ │ │ ├── What-browsers_platforms-cause-the-most-issues_-up-to-3.svg │ │ │ ├── What-feature-areas-cause-the-most-issues_-up-to-3.svg │ │ │ ├── What-layout_styling-features-areas-the-most-issues_-up-to-3.svg │ │ │ └── Who-Took-the-Survey.svg │ │ ├── web-developer-needs-assessment-2019 │ │ │ ├── _1200x630_crop_center-center_none │ │ │ │ └── p1.svg │ │ │ ├── _1200x675_crop_center-center_none │ │ │ │ └── p1.svg │ │ │ ├── p10.svg │ │ │ ├── p11.svg │ │ │ ├── p13.svg │ │ │ ├── p14.svg │ │ │ ├── p18_accessibility.svg │ │ │ ├── p18_authentication.svg │ │ │ ├── p18_browsercopatibility.svg │ │ │ ├── p18_debugging.svg │ │ │ ├── p18_design.svg │ │ │ ├── p18_documentation.svg │ │ │ ├── p18_frameworks.svg │ │ │ ├── p18_localization.svg │ │ │ ├── p18_outliners.svg │ │ │ ├── p18_paceofchange.svg │ │ │ ├── p18_performance.svg │ │ │ ├── p18_privacy.svg │ │ │ ├── p18_security.svg │ │ │ ├── p18_testing.svg │ │ │ ├── p21.svg │ │ │ ├── p22.svg │ │ │ ├── p23.svg │ │ │ ├── p24.svg │ │ │ ├── p25.svg │ │ │ ├── p26.svg │ │ │ ├── p28.svg │ │ │ ├── p40.svg │ │ │ ├── p41.svg │ │ │ ├── p42.svg │ │ │ ├── p43.svg │ │ │ ├── p45.svg │ │ │ ├── p47.svg │ │ │ └── p9.svg │ │ └── web-developer-needs-assessment-2020 │ │ │ ├── How-Developers-Felt-About-Needs_How-Developers-Felt-About-Needs.svg │ │ │ ├── Needs-Assessment_Browser-Beaters.svg │ │ │ ├── Needs-Assessment_Document-Disciples.svg │ │ │ ├── Needs-Assessment_Keeping-Currents.svg │ │ │ ├── Needs-Assessment_Needs-Assessment-Overall.svg │ │ │ ├── Needs-Assessment_Performance-Pushers.svg │ │ │ ├── Needs-Assessment_Progressive-Programmers.svg │ │ │ ├── Needs-Assessment_Regulatory-Wranglers.svg │ │ │ ├── Needs-Assessment_Testing-Technicians.svg │ │ │ ├── Responses-By-Subcategory_Gender.svg │ │ │ ├── Responses-By-Subcategory_Type-of-Developer.svg │ │ │ ├── Responses-By-Subcategory_Years-of-Experience.svg │ │ │ ├── Satisfaction_Overall-Satisfaction.svg │ │ │ ├── Satisfaction_Sat.-By-Subcategory.svg │ │ │ ├── Survey-Responses-By-Region-01.svg │ │ │ ├── Technologies_Accessibility.svg │ │ │ ├── Technologies_Adoption-of-New-Technologies-.svg │ │ │ ├── Technologies_Browsers-Issues.svg │ │ │ ├── Technologies_Browsers-Supported.svg │ │ │ ├── Technologies_CSS.svg │ │ │ ├── Technologies_HTML.svg │ │ │ ├── Technologies_JavaScript.svg │ │ │ ├── Technologies_Web-Testing.svg │ │ │ ├── Technologies_WebAssembly.svg │ │ │ ├── Top-Ten-Needs_Overall-Satisfaction.svg │ │ │ ├── Top-Ten-Needs_Top-Ten-Needs.svg │ │ │ ├── What_s-Missing-from-the-Web_Open-Text-What_s-Missing.svg │ │ │ └── What_s-Missing-from-the-Web_Prompted-What_s-Lacking.svg │ └── js │ │ └── main.094bca66.js │ ├── js │ └── ga.js │ ├── mdn-browser-compatibility-report-2020.html │ ├── mdn-web-developer-needs-assessment-2019.html │ ├── mdn-web-developer-needs-assessment-2020.html │ ├── mdn-web-testing-report-2021.html │ └── pdf │ ├── MDN-Browser-Compatibility-Report-2020.pdf │ ├── MDN-Web-DNA-Report-2019.pdf │ ├── MDN-Web-DNA-Report-2020.pdf │ └── MDN-Web-Testing-Report-2021.pdf ├── sass ├── atoms │ ├── _base.scss │ ├── _borders.scss │ ├── _icons.scss │ ├── _interact.scss │ ├── _logo.scss │ └── _typography.scss ├── insights.scss ├── mixins │ └── _separators.scss └── molecules │ ├── _browser-compat-report.scss │ ├── _footer.scss │ ├── _hero.scss │ ├── _reports-container.scss │ └── _two-column-copy.scss ├── webpack.config.js ├── webpack.config.prod.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | css/libs/ 2 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/README.md -------------------------------------------------------------------------------- /bin/s3-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/bin/s3-sync.sh -------------------------------------------------------------------------------- /bin/slack-notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/bin/slack-notify.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/package.json -------------------------------------------------------------------------------- /public/05b73cafcf0239f7f8e21864c494e94c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/05b73cafcf0239f7f8e21864c494e94c.svg -------------------------------------------------------------------------------- /public/0beac26bfbe29230c3c64cda9c75028c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/0beac26bfbe29230c3c64cda9c75028c.woff2 -------------------------------------------------------------------------------- /public/181dbb93717b56514d7846b0437ad1ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/181dbb93717b56514d7846b0437ad1ee.svg -------------------------------------------------------------------------------- /public/41ba190cd1362fe75daac8165bc349e6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/41ba190cd1362fe75daac8165bc349e6.svg -------------------------------------------------------------------------------- /public/41c8922e0c9d9cde2ad1df0191200b6d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/41c8922e0c9d9cde2ad1df0191200b6d.svg -------------------------------------------------------------------------------- /public/5eb757fe3bc41d00e95b2bfcd9ae9f18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/5eb757fe3bc41d00e95b2bfcd9ae9f18.svg -------------------------------------------------------------------------------- /public/72026b3c6a79bb1ed3d3124fd172de92.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/72026b3c6a79bb1ed3d3124fd172de92.woff -------------------------------------------------------------------------------- /public/7535596a2ace7d84bbbcedfc8be7cde2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/7535596a2ace7d84bbbcedfc8be7cde2.svg -------------------------------------------------------------------------------- /public/75d89c00a006b2d20ad4a7557b245ea0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/75d89c00a006b2d20ad4a7557b245ea0.svg -------------------------------------------------------------------------------- /public/7e4c05c9e1b440bb4bc0a50cfa49dc49.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/7e4c05c9e1b440bb4bc0a50cfa49dc49.woff -------------------------------------------------------------------------------- /public/949efa25b9ed61ef9edb5c68936d54a2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/949efa25b9ed61ef9edb5c68936d54a2.svg -------------------------------------------------------------------------------- /public/assets/05b73cafcf0239f7f8e21864c494e94c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/05b73cafcf0239f7f8e21864c494e94c.svg -------------------------------------------------------------------------------- /public/assets/0beac26bfbe29230c3c64cda9c75028c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/0beac26bfbe29230c3c64cda9c75028c.woff2 -------------------------------------------------------------------------------- /public/assets/181dbb93717b56514d7846b0437ad1ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/181dbb93717b56514d7846b0437ad1ee.svg -------------------------------------------------------------------------------- /public/assets/41ba190cd1362fe75daac8165bc349e6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/41ba190cd1362fe75daac8165bc349e6.svg -------------------------------------------------------------------------------- /public/assets/41c8922e0c9d9cde2ad1df0191200b6d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/41c8922e0c9d9cde2ad1df0191200b6d.svg -------------------------------------------------------------------------------- /public/assets/5eb757fe3bc41d00e95b2bfcd9ae9f18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/5eb757fe3bc41d00e95b2bfcd9ae9f18.svg -------------------------------------------------------------------------------- /public/assets/72026b3c6a79bb1ed3d3124fd172de92.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/72026b3c6a79bb1ed3d3124fd172de92.woff -------------------------------------------------------------------------------- /public/assets/7535596a2ace7d84bbbcedfc8be7cde2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/7535596a2ace7d84bbbcedfc8be7cde2.svg -------------------------------------------------------------------------------- /public/assets/75d89c00a006b2d20ad4a7557b245ea0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/75d89c00a006b2d20ad4a7557b245ea0.svg -------------------------------------------------------------------------------- /public/assets/7e4c05c9e1b440bb4bc0a50cfa49dc49.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/7e4c05c9e1b440bb4bc0a50cfa49dc49.woff -------------------------------------------------------------------------------- /public/assets/949efa25b9ed61ef9edb5c68936d54a2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/949efa25b9ed61ef9edb5c68936d54a2.svg -------------------------------------------------------------------------------- /public/assets/cc5b37feab537ddbf701e47180b15bda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/cc5b37feab537ddbf701e47180b15bda.svg -------------------------------------------------------------------------------- /public/assets/ce3a756dbc26ce21a07291affa06fef9.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/ce3a756dbc26ce21a07291affa06fef9.woff2 -------------------------------------------------------------------------------- /public/assets/d21c8a03dd6eecc729b176367f952bb4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/d21c8a03dd6eecc729b176367f952bb4.svg -------------------------------------------------------------------------------- /public/assets/e091ac5d34b92c56fe4f075d57949691.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/e091ac5d34b92c56fe4f075d57949691.svg -------------------------------------------------------------------------------- /public/assets/f9055252e116bda44cc349ecb3b9cc30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/f9055252e116bda44cc349ecb3b9cc30.svg -------------------------------------------------------------------------------- /public/assets/favicon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/favicon-114.png -------------------------------------------------------------------------------- /public/assets/favicon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/favicon-144.png -------------------------------------------------------------------------------- /public/assets/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/favicon-32.png -------------------------------------------------------------------------------- /public/assets/favicon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/favicon-57.png -------------------------------------------------------------------------------- /public/assets/favicon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/favicon-72.png -------------------------------------------------------------------------------- /public/assets/hero-dna-graphic_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/hero-dna-graphic_1x.png -------------------------------------------------------------------------------- /public/assets/hero-dna-graphic_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/hero-dna-graphic_2x.png -------------------------------------------------------------------------------- /public/assets/mdn-web-docs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/mdn-web-docs-logo.svg -------------------------------------------------------------------------------- /public/assets/opengraph-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/assets/opengraph-logo.png -------------------------------------------------------------------------------- /public/cc5b37feab537ddbf701e47180b15bda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/cc5b37feab537ddbf701e47180b15bda.svg -------------------------------------------------------------------------------- /public/ce3a756dbc26ce21a07291affa06fef9.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/ce3a756dbc26ce21a07291affa06fef9.woff2 -------------------------------------------------------------------------------- /public/css/insights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/css/insights.css -------------------------------------------------------------------------------- /public/css/insights.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/minimalist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/css/minimalist.css -------------------------------------------------------------------------------- /public/css/minimalist.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/d21c8a03dd6eecc729b176367f952bb4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/d21c8a03dd6eecc729b176367f952bb4.svg -------------------------------------------------------------------------------- /public/e091ac5d34b92c56fe4f075d57949691.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/e091ac5d34b92c56fe4f075d57949691.svg -------------------------------------------------------------------------------- /public/f9055252e116bda44cc349ecb3b9cc30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/f9055252e116bda44cc349ecb3b9cc30.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/js/ga.js -------------------------------------------------------------------------------- /public/reports/assets/css/main.1ba6dce9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/css/main.1ba6dce9.css -------------------------------------------------------------------------------- /public/reports/assets/css/main.c42536bb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/css/main.c42536bb.css -------------------------------------------------------------------------------- /public/reports/assets/css/web-testing-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/css/web-testing-report.css -------------------------------------------------------------------------------- /public/reports/assets/fonts/ZillaSlab-Bold.subset.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/fonts/ZillaSlab-Bold.subset.woff -------------------------------------------------------------------------------- /public/reports/assets/fonts/ZillaSlab-Bold.subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/fonts/ZillaSlab-Bold.subset.woff2 -------------------------------------------------------------------------------- /public/reports/assets/fonts/ZillaSlab-Regular.subset.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/fonts/ZillaSlab-Regular.subset.woff -------------------------------------------------------------------------------- /public/reports/assets/fonts/ZillaSlab-Regular.subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/fonts/ZillaSlab-Regular.subset.woff2 -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/Design-Code-or-Both.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/Design-Code-or-Both.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/Hours-Per-Week-Spent-Coding-etc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/Hours-Per-Week-Spent-Coding-etc.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/Overall-Satisfaction-With-Browser-Compatibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/Overall-Satisfaction-With-Browser-Compatibility.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/Overall-Satisfaction-With-the-Web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/Overall-Satisfaction-With-the-Web.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/Top-pain-point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/Top-pain-point.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/Top-pain-points-up-to-5-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/Top-pain-points-up-to-5-2.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/Top-pain-points-up-to-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/Top-pain-points-up-to-5.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/What-are-the-biggest-pain-points_-up-to-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/What-are-the-biggest-pain-points_-up-to-3.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/What-browsers_platforms-cause-the-most-issues_-up-to-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/What-browsers_platforms-cause-the-most-issues_-up-to-3.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/What-feature-areas-cause-the-most-issues_-up-to-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/What-feature-areas-cause-the-most-issues_-up-to-3.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/What-layout_styling-features-areas-the-most-issues_-up-to-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/What-layout_styling-features-areas-the-most-issues_-up-to-3.svg -------------------------------------------------------------------------------- /public/reports/assets/images/Browser-Compatibility-Report-2020/Who-Took-the-Survey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/Browser-Compatibility-Report-2020/Who-Took-the-Survey.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/_1200x630_crop_center-center_none/p1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/_1200x630_crop_center-center_none/p1.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/_1200x675_crop_center-center_none/p1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/_1200x675_crop_center-center_none/p1.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p10.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p11.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p13.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p14.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_accessibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_accessibility.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_authentication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_authentication.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_browsercopatibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_browsercopatibility.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_debugging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_debugging.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_design.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_documentation.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_frameworks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_frameworks.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_localization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_localization.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_outliners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_outliners.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_paceofchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_paceofchange.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_performance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_performance.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_privacy.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_security.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p18_testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p18_testing.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p21.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p22.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p23.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p24.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p25.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p26.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p28.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p40.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p41.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p41.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p42.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p42.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p43.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p43.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p45.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p47.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p47.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2019/p9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2019/p9.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/How-Developers-Felt-About-Needs_How-Developers-Felt-About-Needs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/How-Developers-Felt-About-Needs_How-Developers-Felt-About-Needs.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Browser-Beaters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Browser-Beaters.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Document-Disciples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Document-Disciples.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Keeping-Currents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Keeping-Currents.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Needs-Assessment-Overall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Needs-Assessment-Overall.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Performance-Pushers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Performance-Pushers.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Progressive-Programmers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Progressive-Programmers.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Regulatory-Wranglers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Regulatory-Wranglers.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Testing-Technicians.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Needs-Assessment_Testing-Technicians.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Responses-By-Subcategory_Gender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Responses-By-Subcategory_Gender.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Responses-By-Subcategory_Type-of-Developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Responses-By-Subcategory_Type-of-Developer.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Responses-By-Subcategory_Years-of-Experience.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Responses-By-Subcategory_Years-of-Experience.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Satisfaction_Overall-Satisfaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Satisfaction_Overall-Satisfaction.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Satisfaction_Sat.-By-Subcategory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Satisfaction_Sat.-By-Subcategory.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Survey-Responses-By-Region-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Survey-Responses-By-Region-01.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Accessibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Accessibility.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Adoption-of-New-Technologies-.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Adoption-of-New-Technologies-.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Browsers-Issues.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Browsers-Issues.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Browsers-Supported.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Browsers-Supported.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_CSS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_CSS.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_HTML.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_HTML.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_JavaScript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_JavaScript.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Web-Testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_Web-Testing.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_WebAssembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Technologies_WebAssembly.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Top-Ten-Needs_Overall-Satisfaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Top-Ten-Needs_Overall-Satisfaction.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/Top-Ten-Needs_Top-Ten-Needs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/Top-Ten-Needs_Top-Ten-Needs.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/What_s-Missing-from-the-Web_Open-Text-What_s-Missing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/What_s-Missing-from-the-Web_Open-Text-What_s-Missing.svg -------------------------------------------------------------------------------- /public/reports/assets/images/web-developer-needs-assessment-2020/What_s-Missing-from-the-Web_Prompted-What_s-Lacking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/images/web-developer-needs-assessment-2020/What_s-Missing-from-the-Web_Prompted-What_s-Lacking.svg -------------------------------------------------------------------------------- /public/reports/assets/js/main.094bca66.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/assets/js/main.094bca66.js -------------------------------------------------------------------------------- /public/reports/js/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/js/ga.js -------------------------------------------------------------------------------- /public/reports/mdn-browser-compatibility-report-2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/mdn-browser-compatibility-report-2020.html -------------------------------------------------------------------------------- /public/reports/mdn-web-developer-needs-assessment-2019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/mdn-web-developer-needs-assessment-2019.html -------------------------------------------------------------------------------- /public/reports/mdn-web-developer-needs-assessment-2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/mdn-web-developer-needs-assessment-2020.html -------------------------------------------------------------------------------- /public/reports/mdn-web-testing-report-2021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/mdn-web-testing-report-2021.html -------------------------------------------------------------------------------- /public/reports/pdf/MDN-Browser-Compatibility-Report-2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/pdf/MDN-Browser-Compatibility-Report-2020.pdf -------------------------------------------------------------------------------- /public/reports/pdf/MDN-Web-DNA-Report-2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/pdf/MDN-Web-DNA-Report-2019.pdf -------------------------------------------------------------------------------- /public/reports/pdf/MDN-Web-DNA-Report-2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/pdf/MDN-Web-DNA-Report-2020.pdf -------------------------------------------------------------------------------- /public/reports/pdf/MDN-Web-Testing-Report-2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/public/reports/pdf/MDN-Web-Testing-Report-2021.pdf -------------------------------------------------------------------------------- /sass/atoms/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/atoms/_base.scss -------------------------------------------------------------------------------- /sass/atoms/_borders.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sass/atoms/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/atoms/_icons.scss -------------------------------------------------------------------------------- /sass/atoms/_interact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/atoms/_interact.scss -------------------------------------------------------------------------------- /sass/atoms/_logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/atoms/_logo.scss -------------------------------------------------------------------------------- /sass/atoms/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/atoms/_typography.scss -------------------------------------------------------------------------------- /sass/insights.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/insights.scss -------------------------------------------------------------------------------- /sass/mixins/_separators.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/mixins/_separators.scss -------------------------------------------------------------------------------- /sass/molecules/_browser-compat-report.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/molecules/_browser-compat-report.scss -------------------------------------------------------------------------------- /sass/molecules/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/molecules/_footer.scss -------------------------------------------------------------------------------- /sass/molecules/_hero.scss: -------------------------------------------------------------------------------- 1 | .hero { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /sass/molecules/_reports-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/molecules/_reports-container.scss -------------------------------------------------------------------------------- /sass/molecules/_two-column-copy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/sass/molecules/_two-column-copy.scss -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/webpack.config.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/insights/HEAD/yarn.lock --------------------------------------------------------------------------------