├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── design-to-dev-handoff-.md └── workflows │ └── ci.yml ├── .gitignore ├── .mergify.yml ├── .stylelintrc ├── .stylelintrc-colors.js ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── PULL_REQUEST_TEMPLATE.md ├── Procfile ├── README.md ├── app.json ├── app.jsx ├── appveyor.yml ├── assets ├── favicons │ ├── apple-touch-icon-180x180@2x.png │ ├── favicon-196x196@2x.png │ └── favicon.ico ├── glyphs │ ├── close.svg │ ├── dismiss-focus.svg │ ├── dismiss.svg │ ├── external.svg │ ├── github-dark-theme-hover.svg │ ├── github-dark-theme.svg │ ├── github-hover.svg │ ├── github.svg │ ├── globe.svg │ ├── instagram-dark-theme-hover.svg │ ├── instagram-dark-theme.svg │ ├── linkedin-hover.svg │ ├── linkedin.svg │ ├── locator.svg │ ├── search-focus.svg │ ├── search.svg │ ├── signupin-hover.svg │ ├── signupin.svg │ ├── twitter-dark-theme-hover.svg │ ├── twitter-dark-theme.svg │ ├── twitter-entry-detailed-hover.svg │ ├── twitter-entry-detailed.svg │ ├── twitter-hover.svg │ └── twitter.svg ├── placeholder-thumbnail.png ├── profile-pic.png └── svg │ ├── caret-down.svg │ ├── featured.svg │ ├── hamburger.svg │ ├── icon-404.svg │ ├── icon-add-gray.svg │ ├── icon-add.svg │ ├── icon-bookmark-entry-detailed.svg │ ├── icon-bookmark-selected-entry-detailed.svg │ ├── icon-bookmark-selected.svg │ ├── icon-bookmark.svg │ ├── icon-link-selected.svg │ ├── icon-link.svg │ ├── icon-search.svg │ ├── icon-twitter-selected.svg │ ├── icon-twitter.svg │ ├── mozilla-block-white.svg │ ├── pulse-logo-mobile.svg │ ├── pulse-logo.svg │ ├── pulse-wordmark.svg │ └── x.svg ├── components ├── bio │ ├── bio.jsx │ └── bio.scss ├── bookmark-control.jsx ├── footer │ ├── footer.jsx │ └── footer.scss ├── form-fields │ ├── dynamic-checkbox-group.jsx │ ├── help-types.jsx │ └── issues.jsx ├── help-dropdown │ └── help-dropdown.jsx ├── hint-message │ └── hint-message.jsx ├── issue-selector │ ├── issue-selector.jsx │ └── issue-selector.scss ├── item-list │ └── item-list.jsx ├── join-us-modal │ ├── form │ │ └── create-fields.js │ ├── join-us-modal.jsx │ ├── join-us-modal.scss │ └── step.jsx ├── loading-notice.jsx ├── moderation-panel.jsx ├── nav-link │ └── nav-link.jsx ├── navbar │ ├── navbar.jsx │ └── navbar.scss ├── newsletter-sign-up │ ├── newsletter-sign-up.jsx │ └── newsletter-sign-up.scss ├── notification-bar │ ├── notification-bar.jsx │ └── notification-bar.scss ├── profile-about-tab │ └── profile-about-tab.jsx ├── profile-card │ ├── profile-card.jsx │ └── profile-card.scss ├── profile-loader │ └── profile-loader.jsx ├── profile-project-tab │ └── profile-project-tab.jsx ├── profile-tab-group │ ├── profile-tab-group.jsx │ └── profile-tab-group.scss ├── project-card │ ├── meta │ │ ├── creators.jsx │ │ ├── description.jsx │ │ ├── get-involved.jsx │ │ ├── issues-and-tags.jsx │ │ ├── thumbnail.jsx │ │ ├── title.jsx │ │ └── why-interesting.jsx │ ├── project-card-detailed.jsx │ ├── project-card-detailed.scss │ ├── project-card-simple.jsx │ └── project-card.scss ├── project-loader │ └── project-loader.jsx ├── search-result-counter.jsx ├── search-tab-group │ ├── search-tab-group.jsx │ ├── search-tab-group.scss │ └── search-tab.jsx └── sign-out-button.jsx ├── config ├── default.env └── default.localhost.env.txt ├── contribute.json ├── js ├── analytics.js ├── app-page-settings.js ├── app-user.js ├── basket-signup.js ├── bookmarks-manager.js ├── env-client.js ├── env-server.js ├── form-validator.js ├── localstorage.js ├── review-app-slack-webhook.js ├── security-headers.js ├── service.js └── utility.js ├── main.jsx ├── manifest.json ├── package.json ├── pages ├── add │ ├── add.jsx │ ├── add.scss │ ├── form │ │ ├── auto-complete-input.js │ │ ├── basic-info-fields.js │ │ ├── creators.js │ │ ├── detail-info-fields.js │ │ ├── get-help-fields.js │ │ ├── tag-delimiters.js │ │ ├── tags.js │ │ └── validator.js │ └── submitted.jsx ├── bookmarks.jsx ├── entry.jsx ├── issue.jsx ├── issues │ ├── issues.jsx │ └── issues.scss ├── moderation-search │ ├── moderation-search.jsx │ └── moderation-search.scss ├── moderation.jsx ├── not-found.jsx ├── profile-edit │ ├── form │ │ └── fields.js │ ├── profile-edit.jsx │ └── profile-edit.scss ├── profile.jsx ├── search │ ├── search.jsx │ └── search.scss └── single-filter-criteria-page.jsx ├── scss ├── form.scss ├── foundation-style │ ├── buttons.scss │ ├── glyphs.scss │ ├── mixins │ │ ├── _button.scss │ │ ├── _shared.scss │ │ └── _type.scss │ └── type.scss ├── main.scss ├── mixin.scss ├── mofo-bootstrap │ ├── _colors.scss │ ├── mofo-bootstrap.scss │ └── overrides │ │ └── _variables.scss ├── shared.scss └── variables.scss ├── server.js ├── webpack.client.common.js ├── webpack.client.dev.js ├── webpack.client.prod.js ├── webpack.server.common.js ├── webpack.server.dev.js └── webpack.server.prod.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/design-to-dev-handoff-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.github/ISSUE_TEMPLATE/design-to-dev-handoff-.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.gitignore -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.stylelintrc-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.stylelintrc-colors.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node dist/server.bundle.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/app.json -------------------------------------------------------------------------------- /app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/app.jsx -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/appveyor.yml -------------------------------------------------------------------------------- /assets/favicons/apple-touch-icon-180x180@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/favicons/apple-touch-icon-180x180@2x.png -------------------------------------------------------------------------------- /assets/favicons/favicon-196x196@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/favicons/favicon-196x196@2x.png -------------------------------------------------------------------------------- /assets/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/favicons/favicon.ico -------------------------------------------------------------------------------- /assets/glyphs/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/close.svg -------------------------------------------------------------------------------- /assets/glyphs/dismiss-focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/dismiss-focus.svg -------------------------------------------------------------------------------- /assets/glyphs/dismiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/dismiss.svg -------------------------------------------------------------------------------- /assets/glyphs/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/external.svg -------------------------------------------------------------------------------- /assets/glyphs/github-dark-theme-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/github-dark-theme-hover.svg -------------------------------------------------------------------------------- /assets/glyphs/github-dark-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/github-dark-theme.svg -------------------------------------------------------------------------------- /assets/glyphs/github-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/github-hover.svg -------------------------------------------------------------------------------- /assets/glyphs/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/github.svg -------------------------------------------------------------------------------- /assets/glyphs/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/globe.svg -------------------------------------------------------------------------------- /assets/glyphs/instagram-dark-theme-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/instagram-dark-theme-hover.svg -------------------------------------------------------------------------------- /assets/glyphs/instagram-dark-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/instagram-dark-theme.svg -------------------------------------------------------------------------------- /assets/glyphs/linkedin-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/linkedin-hover.svg -------------------------------------------------------------------------------- /assets/glyphs/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/linkedin.svg -------------------------------------------------------------------------------- /assets/glyphs/locator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/locator.svg -------------------------------------------------------------------------------- /assets/glyphs/search-focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/search-focus.svg -------------------------------------------------------------------------------- /assets/glyphs/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/search.svg -------------------------------------------------------------------------------- /assets/glyphs/signupin-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/signupin-hover.svg -------------------------------------------------------------------------------- /assets/glyphs/signupin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/signupin.svg -------------------------------------------------------------------------------- /assets/glyphs/twitter-dark-theme-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/twitter-dark-theme-hover.svg -------------------------------------------------------------------------------- /assets/glyphs/twitter-dark-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/twitter-dark-theme.svg -------------------------------------------------------------------------------- /assets/glyphs/twitter-entry-detailed-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/twitter-entry-detailed-hover.svg -------------------------------------------------------------------------------- /assets/glyphs/twitter-entry-detailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/twitter-entry-detailed.svg -------------------------------------------------------------------------------- /assets/glyphs/twitter-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/twitter-hover.svg -------------------------------------------------------------------------------- /assets/glyphs/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/glyphs/twitter.svg -------------------------------------------------------------------------------- /assets/placeholder-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/placeholder-thumbnail.png -------------------------------------------------------------------------------- /assets/profile-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/profile-pic.png -------------------------------------------------------------------------------- /assets/svg/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/caret-down.svg -------------------------------------------------------------------------------- /assets/svg/featured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/featured.svg -------------------------------------------------------------------------------- /assets/svg/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/hamburger.svg -------------------------------------------------------------------------------- /assets/svg/icon-404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-404.svg -------------------------------------------------------------------------------- /assets/svg/icon-add-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-add-gray.svg -------------------------------------------------------------------------------- /assets/svg/icon-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-add.svg -------------------------------------------------------------------------------- /assets/svg/icon-bookmark-entry-detailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-bookmark-entry-detailed.svg -------------------------------------------------------------------------------- /assets/svg/icon-bookmark-selected-entry-detailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-bookmark-selected-entry-detailed.svg -------------------------------------------------------------------------------- /assets/svg/icon-bookmark-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-bookmark-selected.svg -------------------------------------------------------------------------------- /assets/svg/icon-bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-bookmark.svg -------------------------------------------------------------------------------- /assets/svg/icon-link-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-link-selected.svg -------------------------------------------------------------------------------- /assets/svg/icon-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-link.svg -------------------------------------------------------------------------------- /assets/svg/icon-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-search.svg -------------------------------------------------------------------------------- /assets/svg/icon-twitter-selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-twitter-selected.svg -------------------------------------------------------------------------------- /assets/svg/icon-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/icon-twitter.svg -------------------------------------------------------------------------------- /assets/svg/mozilla-block-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/mozilla-block-white.svg -------------------------------------------------------------------------------- /assets/svg/pulse-logo-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/pulse-logo-mobile.svg -------------------------------------------------------------------------------- /assets/svg/pulse-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/pulse-logo.svg -------------------------------------------------------------------------------- /assets/svg/pulse-wordmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/pulse-wordmark.svg -------------------------------------------------------------------------------- /assets/svg/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/assets/svg/x.svg -------------------------------------------------------------------------------- /components/bio/bio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/bio/bio.jsx -------------------------------------------------------------------------------- /components/bio/bio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/bio/bio.scss -------------------------------------------------------------------------------- /components/bookmark-control.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/bookmark-control.jsx -------------------------------------------------------------------------------- /components/footer/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/footer/footer.jsx -------------------------------------------------------------------------------- /components/footer/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/footer/footer.scss -------------------------------------------------------------------------------- /components/form-fields/dynamic-checkbox-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/form-fields/dynamic-checkbox-group.jsx -------------------------------------------------------------------------------- /components/form-fields/help-types.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/form-fields/help-types.jsx -------------------------------------------------------------------------------- /components/form-fields/issues.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/form-fields/issues.jsx -------------------------------------------------------------------------------- /components/help-dropdown/help-dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/help-dropdown/help-dropdown.jsx -------------------------------------------------------------------------------- /components/hint-message/hint-message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/hint-message/hint-message.jsx -------------------------------------------------------------------------------- /components/issue-selector/issue-selector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/issue-selector/issue-selector.jsx -------------------------------------------------------------------------------- /components/issue-selector/issue-selector.scss: -------------------------------------------------------------------------------- 1 | .issue-selector { 2 | margin-bottom: 36px; 3 | } 4 | -------------------------------------------------------------------------------- /components/item-list/item-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/item-list/item-list.jsx -------------------------------------------------------------------------------- /components/join-us-modal/form/create-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/join-us-modal/form/create-fields.js -------------------------------------------------------------------------------- /components/join-us-modal/join-us-modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/join-us-modal/join-us-modal.jsx -------------------------------------------------------------------------------- /components/join-us-modal/join-us-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/join-us-modal/join-us-modal.scss -------------------------------------------------------------------------------- /components/join-us-modal/step.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/join-us-modal/step.jsx -------------------------------------------------------------------------------- /components/loading-notice.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/loading-notice.jsx -------------------------------------------------------------------------------- /components/moderation-panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/moderation-panel.jsx -------------------------------------------------------------------------------- /components/nav-link/nav-link.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/nav-link/nav-link.jsx -------------------------------------------------------------------------------- /components/navbar/navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/navbar/navbar.jsx -------------------------------------------------------------------------------- /components/navbar/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/navbar/navbar.scss -------------------------------------------------------------------------------- /components/newsletter-sign-up/newsletter-sign-up.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/newsletter-sign-up/newsletter-sign-up.jsx -------------------------------------------------------------------------------- /components/newsletter-sign-up/newsletter-sign-up.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/newsletter-sign-up/newsletter-sign-up.scss -------------------------------------------------------------------------------- /components/notification-bar/notification-bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/notification-bar/notification-bar.jsx -------------------------------------------------------------------------------- /components/notification-bar/notification-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/notification-bar/notification-bar.scss -------------------------------------------------------------------------------- /components/profile-about-tab/profile-about-tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/profile-about-tab/profile-about-tab.jsx -------------------------------------------------------------------------------- /components/profile-card/profile-card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/profile-card/profile-card.jsx -------------------------------------------------------------------------------- /components/profile-card/profile-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/profile-card/profile-card.scss -------------------------------------------------------------------------------- /components/profile-loader/profile-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/profile-loader/profile-loader.jsx -------------------------------------------------------------------------------- /components/profile-project-tab/profile-project-tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/profile-project-tab/profile-project-tab.jsx -------------------------------------------------------------------------------- /components/profile-tab-group/profile-tab-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/profile-tab-group/profile-tab-group.jsx -------------------------------------------------------------------------------- /components/profile-tab-group/profile-tab-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/profile-tab-group/profile-tab-group.scss -------------------------------------------------------------------------------- /components/project-card/meta/creators.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/meta/creators.jsx -------------------------------------------------------------------------------- /components/project-card/meta/description.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/meta/description.jsx -------------------------------------------------------------------------------- /components/project-card/meta/get-involved.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/meta/get-involved.jsx -------------------------------------------------------------------------------- /components/project-card/meta/issues-and-tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/meta/issues-and-tags.jsx -------------------------------------------------------------------------------- /components/project-card/meta/thumbnail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/meta/thumbnail.jsx -------------------------------------------------------------------------------- /components/project-card/meta/title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/meta/title.jsx -------------------------------------------------------------------------------- /components/project-card/meta/why-interesting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/meta/why-interesting.jsx -------------------------------------------------------------------------------- /components/project-card/project-card-detailed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/project-card-detailed.jsx -------------------------------------------------------------------------------- /components/project-card/project-card-detailed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/project-card-detailed.scss -------------------------------------------------------------------------------- /components/project-card/project-card-simple.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/project-card-simple.jsx -------------------------------------------------------------------------------- /components/project-card/project-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-card/project-card.scss -------------------------------------------------------------------------------- /components/project-loader/project-loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/project-loader/project-loader.jsx -------------------------------------------------------------------------------- /components/search-result-counter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/search-result-counter.jsx -------------------------------------------------------------------------------- /components/search-tab-group/search-tab-group.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/search-tab-group/search-tab-group.jsx -------------------------------------------------------------------------------- /components/search-tab-group/search-tab-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/search-tab-group/search-tab-group.scss -------------------------------------------------------------------------------- /components/search-tab-group/search-tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/search-tab-group/search-tab.jsx -------------------------------------------------------------------------------- /components/sign-out-button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/components/sign-out-button.jsx -------------------------------------------------------------------------------- /config/default.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/config/default.env -------------------------------------------------------------------------------- /config/default.localhost.env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/config/default.localhost.env.txt -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/contribute.json -------------------------------------------------------------------------------- /js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/analytics.js -------------------------------------------------------------------------------- /js/app-page-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/app-page-settings.js -------------------------------------------------------------------------------- /js/app-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/app-user.js -------------------------------------------------------------------------------- /js/basket-signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/basket-signup.js -------------------------------------------------------------------------------- /js/bookmarks-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/bookmarks-manager.js -------------------------------------------------------------------------------- /js/env-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/env-client.js -------------------------------------------------------------------------------- /js/env-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/env-server.js -------------------------------------------------------------------------------- /js/form-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/form-validator.js -------------------------------------------------------------------------------- /js/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/localstorage.js -------------------------------------------------------------------------------- /js/review-app-slack-webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/review-app-slack-webhook.js -------------------------------------------------------------------------------- /js/security-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/security-headers.js -------------------------------------------------------------------------------- /js/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/service.js -------------------------------------------------------------------------------- /js/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/js/utility.js -------------------------------------------------------------------------------- /main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/main.jsx -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/package.json -------------------------------------------------------------------------------- /pages/add/add.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/add.jsx -------------------------------------------------------------------------------- /pages/add/add.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/add.scss -------------------------------------------------------------------------------- /pages/add/form/auto-complete-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/form/auto-complete-input.js -------------------------------------------------------------------------------- /pages/add/form/basic-info-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/form/basic-info-fields.js -------------------------------------------------------------------------------- /pages/add/form/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/form/creators.js -------------------------------------------------------------------------------- /pages/add/form/detail-info-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/form/detail-info-fields.js -------------------------------------------------------------------------------- /pages/add/form/get-help-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/form/get-help-fields.js -------------------------------------------------------------------------------- /pages/add/form/tag-delimiters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/form/tag-delimiters.js -------------------------------------------------------------------------------- /pages/add/form/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/form/tags.js -------------------------------------------------------------------------------- /pages/add/form/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/form/validator.js -------------------------------------------------------------------------------- /pages/add/submitted.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/add/submitted.jsx -------------------------------------------------------------------------------- /pages/bookmarks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/bookmarks.jsx -------------------------------------------------------------------------------- /pages/entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/entry.jsx -------------------------------------------------------------------------------- /pages/issue.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/issue.jsx -------------------------------------------------------------------------------- /pages/issues/issues.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/issues/issues.jsx -------------------------------------------------------------------------------- /pages/issues/issues.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/issues/issues.scss -------------------------------------------------------------------------------- /pages/moderation-search/moderation-search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/moderation-search/moderation-search.jsx -------------------------------------------------------------------------------- /pages/moderation-search/moderation-search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/moderation-search/moderation-search.scss -------------------------------------------------------------------------------- /pages/moderation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/moderation.jsx -------------------------------------------------------------------------------- /pages/not-found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/not-found.jsx -------------------------------------------------------------------------------- /pages/profile-edit/form/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/profile-edit/form/fields.js -------------------------------------------------------------------------------- /pages/profile-edit/profile-edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/profile-edit/profile-edit.jsx -------------------------------------------------------------------------------- /pages/profile-edit/profile-edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/profile-edit/profile-edit.scss -------------------------------------------------------------------------------- /pages/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/profile.jsx -------------------------------------------------------------------------------- /pages/search/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/search/search.jsx -------------------------------------------------------------------------------- /pages/search/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/search/search.scss -------------------------------------------------------------------------------- /pages/single-filter-criteria-page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/pages/single-filter-criteria-page.jsx -------------------------------------------------------------------------------- /scss/form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/form.scss -------------------------------------------------------------------------------- /scss/foundation-style/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/foundation-style/buttons.scss -------------------------------------------------------------------------------- /scss/foundation-style/glyphs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/foundation-style/glyphs.scss -------------------------------------------------------------------------------- /scss/foundation-style/mixins/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/foundation-style/mixins/_button.scss -------------------------------------------------------------------------------- /scss/foundation-style/mixins/_shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/foundation-style/mixins/_shared.scss -------------------------------------------------------------------------------- /scss/foundation-style/mixins/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/foundation-style/mixins/_type.scss -------------------------------------------------------------------------------- /scss/foundation-style/type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/foundation-style/type.scss -------------------------------------------------------------------------------- /scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/main.scss -------------------------------------------------------------------------------- /scss/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/mixin.scss -------------------------------------------------------------------------------- /scss/mofo-bootstrap/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/mofo-bootstrap/_colors.scss -------------------------------------------------------------------------------- /scss/mofo-bootstrap/mofo-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/mofo-bootstrap/mofo-bootstrap.scss -------------------------------------------------------------------------------- /scss/mofo-bootstrap/overrides/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/mofo-bootstrap/overrides/_variables.scss -------------------------------------------------------------------------------- /scss/shared.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/shared.scss -------------------------------------------------------------------------------- /scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/scss/variables.scss -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/server.js -------------------------------------------------------------------------------- /webpack.client.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/webpack.client.common.js -------------------------------------------------------------------------------- /webpack.client.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/webpack.client.dev.js -------------------------------------------------------------------------------- /webpack.client.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/webpack.client.prod.js -------------------------------------------------------------------------------- /webpack.server.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/webpack.server.common.js -------------------------------------------------------------------------------- /webpack.server.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/webpack.server.dev.js -------------------------------------------------------------------------------- /webpack.server.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/network-pulse/HEAD/webpack.server.prod.js --------------------------------------------------------------------------------