├── .bowerrc ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin ├── docker_run.sh ├── generate_iframe_translations.js └── getnames.js ├── bower.json ├── config.js ├── fabfile.py ├── gulpfile.js ├── karma.conf.js ├── locale ├── af │ └── LC_MESSAGES │ │ └── messages.po ├── ar │ └── LC_MESSAGES │ │ └── messages.po ├── as │ └── LC_MESSAGES │ │ └── messages.po ├── ast │ └── LC_MESSAGES │ │ └── messages.po ├── az │ └── LC_MESSAGES │ │ └── messages.po ├── be │ └── LC_MESSAGES │ │ └── messages.po ├── bg │ └── LC_MESSAGES │ │ └── messages.po ├── bm │ └── LC_MESSAGES │ │ └── messages.po ├── bn_BD │ └── LC_MESSAGES │ │ └── messages.po ├── bn_IN │ └── LC_MESSAGES │ │ └── messages.po ├── bs │ └── LC_MESSAGES │ │ └── messages.po ├── ca │ └── LC_MESSAGES │ │ └── messages.po ├── cs │ └── LC_MESSAGES │ │ └── messages.po ├── cy │ └── LC_MESSAGES │ │ └── messages.po ├── da │ └── LC_MESSAGES │ │ └── messages.po ├── dbg │ └── LC_MESSAGES │ │ └── messages.po ├── de │ └── LC_MESSAGES │ │ └── messages.po ├── dsb │ └── LC_MESSAGES │ │ └── messages.po ├── ee │ └── LC_MESSAGES │ │ └── messages.po ├── el │ └── LC_MESSAGES │ │ └── messages.po ├── en_GB │ └── LC_MESSAGES │ │ └── messages.po ├── en_US │ └── LC_MESSAGES │ │ └── messages.po ├── eo │ └── LC_MESSAGES │ │ └── messages.po ├── es │ └── LC_MESSAGES │ │ └── messages.po ├── et │ └── LC_MESSAGES │ │ └── messages.po ├── eu │ └── LC_MESSAGES │ │ └── messages.po ├── fa │ └── LC_MESSAGES │ │ └── messages.po ├── ff │ └── LC_MESSAGES │ │ └── messages.po ├── fi │ └── LC_MESSAGES │ │ └── messages.po ├── fr │ └── LC_MESSAGES │ │ └── messages.po ├── fy ├── fy_NL │ └── LC_MESSAGES │ │ └── messages.po ├── ga │ └── LC_MESSAGES │ │ └── messages.po ├── ga_IE │ └── LC_MESSAGES │ │ └── messages.po ├── gd │ └── LC_MESSAGES │ │ └── messages.po ├── generate_categories_translations.py ├── gl │ └── LC_MESSAGES │ │ └── messages.po ├── gu │ └── LC_MESSAGES │ │ └── messages.po ├── gu_IN │ └── LC_MESSAGES │ │ └── messages.po ├── ha │ └── LC_MESSAGES │ │ └── messages.po ├── he │ └── LC_MESSAGES │ │ └── messages.po ├── hi_IN │ └── LC_MESSAGES │ │ └── messages.po ├── hr │ └── LC_MESSAGES │ │ └── messages.po ├── hsb │ └── LC_MESSAGES │ │ └── messages.po ├── ht │ └── LC_MESSAGES │ │ └── messages.po ├── hu │ └── LC_MESSAGES │ │ └── messages.po ├── id │ └── LC_MESSAGES │ │ └── messages.po ├── ig │ └── LC_MESSAGES │ │ └── messages.po ├── it │ └── LC_MESSAGES │ │ └── messages.po ├── ja │ └── LC_MESSAGES │ │ └── messages.po ├── km │ └── LC_MESSAGES │ │ └── messages.po ├── kn │ └── LC_MESSAGES │ │ └── messages.po ├── ko │ └── LC_MESSAGES │ │ └── messages.po ├── ku │ └── LC_MESSAGES │ │ └── messages.po ├── lg │ └── LC_MESSAGES │ │ └── messages.po ├── lij │ └── LC_MESSAGES │ │ └── messages.po ├── ln │ └── LC_MESSAGES │ │ └── messages.po ├── lt │ └── LC_MESSAGES │ │ └── messages.po ├── mg │ └── LC_MESSAGES │ │ └── messages.po ├── mk │ └── LC_MESSAGES │ │ └── messages.po ├── ml │ └── LC_MESSAGES │ │ └── messages.po ├── mn │ └── LC_MESSAGES │ │ └── messages.po ├── ms │ └── LC_MESSAGES │ │ └── messages.po ├── my │ └── LC_MESSAGES │ │ └── messages.po ├── nb_NO │ └── LC_MESSAGES │ │ └── messages.po ├── ne_NP │ └── LC_MESSAGES │ │ └── messages.po ├── nl │ └── LC_MESSAGES │ │ └── messages.po ├── omg_new_l10n.sh ├── or │ └── LC_MESSAGES │ │ └── messages.po ├── pa ├── pa_IN │ └── LC_MESSAGES │ │ └── messages.po ├── pl │ └── LC_MESSAGES │ │ └── messages.po ├── pt ├── pt_BR │ └── LC_MESSAGES │ │ └── messages.po ├── pt_PT │ └── LC_MESSAGES │ │ └── messages.po ├── ro │ └── LC_MESSAGES │ │ └── messages.po ├── rtl │ └── LC_MESSAGES │ │ └── messages.po ├── ru │ └── LC_MESSAGES │ │ └── messages.po ├── si │ └── LC_MESSAGES │ │ └── messages.po ├── sk │ └── LC_MESSAGES │ │ └── messages.po ├── sl │ └── LC_MESSAGES │ │ └── messages.po ├── son │ └── LC_MESSAGES │ │ └── messages.po ├── sq │ └── LC_MESSAGES │ │ └── messages.po ├── sr │ └── LC_MESSAGES │ │ └── messages.po ├── sr_Latn │ └── LC_MESSAGES │ │ └── messages.po ├── stats-po.sh ├── sv │ └── LC_MESSAGES │ │ └── messages.po ├── sv_SE │ └── LC_MESSAGES │ │ └── messages.po ├── sw │ └── LC_MESSAGES │ │ └── messages.po ├── ta │ └── LC_MESSAGES │ │ └── messages.po ├── te │ └── LC_MESSAGES │ │ └── messages.po ├── templates │ └── LC_MESSAGES │ │ ├── .messagehash │ │ └── messages.pot ├── th │ └── LC_MESSAGES │ │ └── messages.po ├── tl │ └── LC_MESSAGES │ │ └── messages.po ├── tn │ └── LC_MESSAGES │ │ └── messages.po ├── tr │ └── LC_MESSAGES │ │ └── messages.po ├── uk │ └── LC_MESSAGES │ │ └── messages.po ├── ur │ └── LC_MESSAGES │ │ └── messages.po ├── vi │ └── LC_MESSAGES │ │ └── messages.po ├── wo │ └── LC_MESSAGES │ │ └── messages.po ├── xh │ └── LC_MESSAGES │ │ └── messages.po ├── yo │ └── LC_MESSAGES │ │ └── messages.po ├── zh_CN │ └── LC_MESSAGES │ │ └── messages.po ├── zh_TW │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── zu │ └── LC_MESSAGES │ └── messages.po ├── package.json ├── package ├── iframe │ ├── README.md │ ├── app-icons │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 60.png │ │ └── 90.png │ ├── index.html │ ├── js │ │ ├── activities.js │ │ ├── features.js │ │ ├── logger.js │ │ ├── main.js │ │ ├── messages.js │ │ └── translations.js │ ├── manifest.webapp │ ├── style.css │ └── tests │ │ ├── activities.test.js │ │ ├── features.test.js │ │ └── messages.test.js └── templates │ ├── manifest.webapp │ └── settings_local_package.js ├── sherlocked.js ├── src ├── app-icons │ ├── 120.png │ ├── 128.png │ ├── 60.png │ └── 90.png ├── app.html ├── dev.html ├── manifests │ ├── dev.json │ ├── hosted.webapp │ └── standard.json ├── media │ ├── __init__.py │ ├── css │ │ ├── account.styl │ │ ├── addon-list.styl │ │ ├── addon-tiles.styl │ │ ├── app-list-filters.styl │ │ ├── app-list.styl │ │ ├── buttons-loadmore.styl │ │ ├── buttons.styl │ │ ├── carrier.styl │ │ ├── categories.styl │ │ ├── debug.styl │ │ ├── detail │ │ │ ├── base.styl │ │ │ ├── content-ratings.styl │ │ │ ├── header.styl │ │ │ ├── info.styl │ │ │ ├── more-info.styl │ │ │ ├── post-install-message.styl │ │ │ ├── reviews.styl │ │ │ ├── upsell.styl │ │ │ └── website.styl │ │ ├── elements--categories.styl │ │ ├── elements--select.styl │ │ ├── feed │ │ │ ├── brands.styl │ │ │ ├── collections.styl │ │ │ ├── colors.styl │ │ │ ├── curves.styl │ │ │ ├── feed.styl │ │ │ ├── icon-grid.styl │ │ │ ├── index.styl │ │ │ ├── landing.styl │ │ │ ├── layout.styl │ │ │ ├── shelves.styl │ │ │ └── websites.styl │ │ ├── feedback.styl │ │ ├── footer.styl │ │ ├── forms.styl │ │ ├── header--global.styl │ │ ├── header--search.styl │ │ ├── header--settings.styl │ │ ├── header.styl │ │ ├── image-deferrer.styl │ │ ├── infobox.styl │ │ ├── lib │ │ │ ├── buttons.styl │ │ │ ├── categories.styl │ │ │ ├── colors.styl │ │ │ ├── feed.styl │ │ │ ├── hambacker.styl │ │ │ ├── index.styl │ │ │ ├── layout.styl │ │ │ ├── mixins.styl │ │ │ ├── spinner.styl │ │ │ └── typography.styl │ │ ├── lightbox.styl │ │ ├── modal.styl │ │ ├── nav--global.styl │ │ ├── nav--settings.styl │ │ ├── newsletter.styl │ │ ├── notification.styl │ │ ├── paginator.styl │ │ ├── personalization.styl │ │ ├── previews.styl │ │ ├── reset.styl │ │ ├── reviews.styl │ │ ├── search.styl │ │ ├── site.styl │ │ ├── sort-toggle.styl │ │ ├── splash.styl │ │ ├── standalone.styl │ │ ├── tiles.styl │ │ ├── typography.styl │ │ └── view-all-tab.styl │ ├── fonts │ │ ├── FeuraSans │ │ │ ├── FeuraSansWeb-Bold.svg │ │ │ ├── FeuraSansWeb-Bold.woff │ │ │ ├── FeuraSansWeb-Light.svg │ │ │ ├── FeuraSansWeb-Light.woff │ │ │ ├── FeuraSansWeb-Medium.svg │ │ │ ├── FeuraSansWeb-Medium.woff │ │ │ ├── FeuraSansWeb-Regular.svg │ │ │ ├── FeuraSansWeb-Regular.woff │ │ │ └── LICENSE │ │ └── FiraSans │ │ │ ├── firasansot-bold-webfont.eot │ │ │ ├── firasansot-bold-webfont.svg │ │ │ ├── firasansot-bold-webfont.ttf │ │ │ ├── firasansot-bold-webfont.woff │ │ │ ├── firasansot-bolditalic-webfont.eot │ │ │ ├── firasansot-bolditalic-webfont.svg │ │ │ ├── firasansot-bolditalic-webfont.ttf │ │ │ ├── firasansot-bolditalic-webfont.woff │ │ │ ├── firasansot-light-webfont.eot │ │ │ ├── firasansot-light-webfont.svg │ │ │ ├── firasansot-light-webfont.ttf │ │ │ ├── firasansot-light-webfont.woff │ │ │ ├── firasansot-lightitalic-webfont.eot │ │ │ ├── firasansot-lightitalic-webfont.svg │ │ │ ├── firasansot-lightitalic-webfont.ttf │ │ │ ├── firasansot-lightitalic-webfont.woff │ │ │ ├── firasansot-medium-webfont.eot │ │ │ ├── firasansot-medium-webfont.svg │ │ │ ├── firasansot-medium-webfont.ttf │ │ │ ├── firasansot-medium-webfont.woff │ │ │ ├── firasansot-mediumitalic-webfont.eot │ │ │ ├── firasansot-mediumitalic-webfont.svg │ │ │ ├── firasansot-mediumitalic-webfont.ttf │ │ │ ├── firasansot-mediumitalic-webfont.woff │ │ │ ├── firasansot-regular-webfont.eot │ │ │ ├── firasansot-regular-webfont.svg │ │ │ ├── firasansot-regular-webfont.ttf │ │ │ ├── firasansot-regular-webfont.woff │ │ │ ├── firasansot-regularitalic-webfont.eot │ │ │ ├── firasansot-regularitalic-webfont.svg │ │ │ ├── firasansot-regularitalic-webfont.ttf │ │ │ └── firasansot-regularitalic-webfont.woff │ ├── img │ │ ├── app-icons │ │ │ ├── 120.png │ │ │ ├── 128.png │ │ │ ├── 60.png │ │ │ └── 90.png │ │ ├── btn_spinner.png │ │ ├── btn_spinner_18.png │ │ ├── btn_spinner_18_2x.png │ │ ├── btn_spinner_2x.png │ │ ├── btn_spinner_alt.png │ │ ├── btn_spinner_alt_2x.png │ │ ├── carriers │ │ │ ├── bastacorp-category.png │ │ │ ├── claro.png │ │ │ ├── congstar.png │ │ │ ├── deutsche_telekom.svg │ │ │ ├── movistar.png │ │ │ ├── movistar.svg │ │ │ ├── o2.jpg │ │ │ ├── telenor.svg │ │ │ └── vivo.png │ │ ├── grain.png │ │ ├── icons │ │ │ ├── addons.svg │ │ │ ├── brands │ │ │ │ ├── LocalCommunityFavourite-40px.png │ │ │ │ ├── arts&Entertainment-40px.png │ │ │ │ ├── books-40px.png │ │ │ │ ├── countrySpecific-40px.png │ │ │ │ ├── creativity-40px.png │ │ │ │ ├── education-40px.png │ │ │ │ ├── games-40px.png │ │ │ │ ├── groundbreaking-40px.png │ │ │ │ ├── health&Fitness-40px.png │ │ │ │ ├── hiddenGem-40px.png │ │ │ │ ├── lifestyle-40px.png │ │ │ │ ├── maps&Nav-40px.png │ │ │ │ ├── music-40px.png │ │ │ │ ├── mysteryApp-40px.png │ │ │ │ ├── news&Weather-40px.png │ │ │ │ ├── photos&Video-40px.png │ │ │ │ ├── shopping-40px.png │ │ │ │ ├── social-40px.png │ │ │ │ ├── sports-40px.png │ │ │ │ ├── tools&TimesSavers-40px.png │ │ │ │ ├── travel-40px.png │ │ │ │ └── work&Business-40px.png │ │ │ ├── clear.png │ │ │ ├── close.png │ │ │ ├── placeholder.svg │ │ │ ├── placeholder_preview.svg │ │ │ ├── ratings │ │ │ │ ├── CLASSIND_10.png │ │ │ │ ├── CLASSIND_12.png │ │ │ │ ├── CLASSIND_14.png │ │ │ │ ├── CLASSIND_16.png │ │ │ │ ├── CLASSIND_18.png │ │ │ │ ├── CLASSIND_L.png │ │ │ │ ├── ESRB_ao.png │ │ │ │ ├── ESRB_e.png │ │ │ │ ├── ESRB_e10.png │ │ │ │ ├── ESRB_m.png │ │ │ │ ├── ESRB_t.png │ │ │ │ ├── USK_0.png │ │ │ │ ├── USK_12.png │ │ │ │ ├── USK_16.png │ │ │ │ ├── USK_18.png │ │ │ │ ├── USK_6.png │ │ │ │ ├── USK_RR.png │ │ │ │ ├── descriptors │ │ │ │ │ ├── pegi_discrimination.png │ │ │ │ │ ├── pegi_drugs.png │ │ │ │ │ ├── pegi_fear.png │ │ │ │ │ ├── pegi_gambling.png │ │ │ │ │ ├── pegi_inapp_purchase_option.png │ │ │ │ │ ├── pegi_language.png │ │ │ │ │ ├── pegi_location_data_sharing.png │ │ │ │ │ ├── pegi_nudity.png │ │ │ │ │ ├── pegi_online.png │ │ │ │ │ ├── pegi_personal_data_sharing.png │ │ │ │ │ ├── pegi_sex.png │ │ │ │ │ ├── pegi_social_interaction_functionality.png │ │ │ │ │ └── pegi_violence.png │ │ │ │ ├── esrb_ao_spa.png │ │ │ │ ├── esrb_e10_spa.png │ │ │ │ ├── esrb_e_spa.png │ │ │ │ ├── esrb_m_spa.png │ │ │ │ ├── esrb_t_spa.png │ │ │ │ ├── generic_12.png │ │ │ │ ├── generic_16.png │ │ │ │ ├── generic_18.png │ │ │ │ ├── generic_3.png │ │ │ │ ├── generic_7.png │ │ │ │ ├── generic_rp.png │ │ │ │ ├── interactives │ │ │ │ │ ├── ESRB_digital-purchases.png │ │ │ │ │ ├── ESRB_shares-info.png │ │ │ │ │ ├── ESRB_shares-info_small.png │ │ │ │ │ ├── ESRB_shares-location.png │ │ │ │ │ ├── ESRB_shares-location_small.png │ │ │ │ │ ├── ESRB_users-interact.png │ │ │ │ │ └── ESRB_users-interact_small.png │ │ │ │ ├── pegi_12.png │ │ │ │ ├── pegi_16.png │ │ │ │ ├── pegi_18.png │ │ │ │ ├── pegi_3.png │ │ │ │ └── pegi_7.png │ │ │ ├── refresh-icon.svg │ │ │ ├── slider_arrow-2x.png │ │ │ └── slider_arrow.png │ │ ├── logos │ │ │ ├── 128.png │ │ │ ├── 32.png │ │ │ ├── 64.png │ │ │ ├── firefox-256.png │ │ │ ├── firefox-64.png │ │ │ ├── footzilla-2x.png │ │ │ ├── footzilla.png │ │ │ ├── footzilla.svg │ │ │ ├── full-color.svg │ │ │ └── full-white.svg │ │ ├── marketplace_logo.svg │ │ ├── nav │ │ │ ├── back.svg │ │ │ ├── clear.svg │ │ │ ├── expand_arrow.svg │ │ │ ├── full-color.svg │ │ │ ├── full-white.svg │ │ │ ├── header-logo-beta.svg │ │ │ ├── header-logo.svg │ │ │ ├── menu.svg │ │ │ ├── menu_sprite.svg │ │ │ ├── rocket-color.svg │ │ │ ├── search.svg │ │ │ └── user.svg │ │ ├── online-status-beacon.gif │ │ ├── pretty │ │ │ ├── alert.svg │ │ │ ├── alert_triangle.svg │ │ │ ├── arrow-l.svg │ │ │ ├── back_arrow.svg │ │ │ ├── back_arrow_active.svg │ │ │ ├── categories-sprite-alt.svg │ │ │ ├── categories-sprite-black.svg │ │ │ ├── categories-sprite.svg │ │ │ ├── cats-sprite.svg │ │ │ ├── close.svg │ │ │ ├── close_active.svg │ │ │ ├── close_lightbox.svg │ │ │ ├── collection_default.png │ │ │ ├── dropdown.svg │ │ │ ├── dropdown_active.svg │ │ │ ├── gear.svg │ │ │ ├── list-toggle.svg │ │ │ ├── marketplace-beta-logo.png │ │ │ ├── marketplace-beta-logo2X.png │ │ │ ├── marketplace-icon.svg │ │ │ ├── marketplace_logo.png │ │ │ ├── no-connection.svg │ │ │ ├── rocket.png │ │ │ ├── search.svg │ │ │ ├── settings_gear.svg │ │ │ ├── settings_gear_active.svg │ │ │ ├── stars.svg │ │ │ ├── stars_large.svg │ │ │ └── tick-white.svg │ │ └── promo │ │ │ ├── basecamp.png │ │ │ ├── chess-1.png │ │ │ ├── games.png │ │ │ ├── generic.png │ │ │ ├── goldnuggets.png │ │ │ └── productivity.png │ └── js │ │ ├── app_list.js │ │ ├── apps.js │ │ ├── buttons.js │ │ ├── carrier.js │ │ ├── categories.js │ │ ├── compat_filter.js │ │ ├── consumer_info.js │ │ ├── content-ratings.js │ │ ├── edbrands.js │ │ ├── elements │ │ ├── categories.js │ │ └── select.js │ │ ├── feed.js │ │ ├── feed_websites.js │ │ ├── header_footer.js │ │ ├── helpers_local.js │ │ ├── image-deferrer-mkt.js │ │ ├── image-deferrer.js │ │ ├── init.js │ │ ├── installer_direct.js │ │ ├── installer_iframe.js │ │ ├── installer_mock.js │ │ ├── keys.js │ │ ├── linefit.js │ │ ├── main.js │ │ ├── mobilenetwork.js │ │ ├── nav.js │ │ ├── newsletter.js │ │ ├── overlay.js │ │ ├── payments.js │ │ ├── perf_events.js │ │ ├── perf_helper.js │ │ ├── previews-buttons.js │ │ ├── previews-lightbox.js │ │ ├── previews.js │ │ ├── ratingwidget.js │ │ ├── reviews.js │ │ ├── rewriters.js │ │ ├── route_api_args.js │ │ ├── routes.js │ │ ├── settings_app.js │ │ ├── settings_local.js.dist │ │ ├── settings_local_hosted.js │ │ ├── settings_local_test.js │ │ ├── settings_local_webqa.js │ │ ├── tracking.js │ │ ├── tracking_events.js │ │ ├── truncator.js │ │ ├── update_banner.js │ │ ├── user_helpers.js │ │ ├── utils_local.js │ │ ├── views │ │ ├── addon.js │ │ ├── addon │ │ │ └── abuse.js │ │ ├── addons.js │ │ ├── app.js │ │ ├── app │ │ │ ├── abuse.js │ │ │ ├── privacy.js │ │ │ ├── ratings.js │ │ │ ├── ratings │ │ │ │ ├── add.js │ │ │ │ ├── edit.js │ │ │ │ └── rating.js │ │ │ └── receipt.js │ │ ├── carrier.js │ │ ├── category.js │ │ ├── category_websites.js │ │ ├── debug.js │ │ ├── debug_features.js │ │ ├── feed_landing.js │ │ ├── feedback.js │ │ ├── homepage.js │ │ ├── homescreens.js │ │ ├── langpacks.js │ │ ├── new_apps.js │ │ ├── new_websites.js │ │ ├── newsletter_signup.js │ │ ├── popular_apps.js │ │ ├── popular_websites.js │ │ ├── privacy.js │ │ ├── purchases.js │ │ ├── recommended.js │ │ ├── search.js │ │ ├── settings.js │ │ ├── terms.js │ │ ├── usage.js │ │ ├── website.js │ │ └── website │ │ │ └── issue.js │ │ └── webactivities.js └── templates │ ├── _includes │ ├── abuse_modal.html │ ├── back_to_app.html │ ├── carrier_apps_banner.html │ ├── content_ratings.html │ ├── feedback_modal.html │ ├── flag_review_modal.html │ ├── post_install_message.html │ ├── review_modal.html │ ├── reviews_sidebar.html │ └── reviews_summary.html │ ├── _macros │ ├── addon_tile.html │ ├── app_tile.html │ ├── deferred_icon.html │ ├── detail.html │ ├── emaillink.html │ ├── feed_app_tile.html │ ├── feed_item.html │ ├── feed_websites.html │ ├── forms.html │ ├── market_button.html │ ├── more_button.html │ ├── previews.html │ ├── review.html │ ├── sort_toggle.html │ └── stars.html │ ├── addon │ ├── abuse.html │ ├── index.html │ └── list.html │ ├── app │ ├── abuse.html │ ├── index.html │ ├── privacy.html │ └── receipt.html │ ├── carrier.html │ ├── categories.html │ ├── category.html │ ├── debug.html │ ├── debug_features.html │ ├── errors │ ├── 404.html │ ├── fragment.html │ └── pagination.html │ ├── feed │ ├── app.html │ ├── collection.html │ ├── editorial.html │ ├── feed_item.html │ └── shelf.html │ ├── feedback.html │ ├── footer.html │ ├── fxos_only_banner.html │ ├── header.html │ ├── homepage.html │ ├── langpacks.html │ ├── marketplace-update.html │ ├── nav.html │ ├── newsletter.html │ ├── privacy.html │ ├── product_list.html │ ├── purchases.html │ ├── ratings │ ├── add.html │ ├── edit.html │ ├── flag.html │ ├── main.html │ └── rating.html │ ├── search.html │ ├── settings.html │ ├── shutdown_banner.html │ ├── terms.html │ ├── usage.html │ └── website │ ├── index.html │ └── issue.html ├── test-main.js └── tests ├── captures └── README.md ├── lib ├── app_list.js ├── constants.js └── helpers.js ├── serve.sh ├── ui ├── app │ ├── abuse.js │ ├── index.js │ └── reviews.js ├── app_list.js ├── category.js ├── feed.js ├── feedback.js ├── header.js ├── index.js ├── installs.js ├── langpacks.js ├── nav.js ├── platform_selector.js ├── previews.js ├── scroll.js ├── search.js ├── settings.js ├── tracking.js ├── update_banner.js └── website │ └── issue.js └── unit ├── apps.js ├── buttons.js ├── compat_filter.js ├── consumer_info.js ├── elements--categories.js ├── elements--select.js ├── helpers.js ├── installer_direct.js ├── installer_mock.js ├── mobilenetwork.js ├── payments.js ├── rewriters.js ├── settings.js ├── template.js ├── tracking.js └── user_helpers.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "interactive": false 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/README.md -------------------------------------------------------------------------------- /bin/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/bin/docker_run.sh -------------------------------------------------------------------------------- /bin/generate_iframe_translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/bin/generate_iframe_translations.js -------------------------------------------------------------------------------- /bin/getnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/bin/getnames.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/bower.json -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/config.js -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/fabfile.py -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/karma.conf.js -------------------------------------------------------------------------------- /locale/af/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/af/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ar/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ar/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/as/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/as/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ast/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ast/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/az/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/az/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/be/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/be/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bg/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/bg/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bm/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/bm/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bn_BD/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/bn_BD/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bn_IN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/bn_IN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/bs/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/bs/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ca/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ca/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/cs/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/cs/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/cy/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/cy/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/da/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/da/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/dbg/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/dbg/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/de/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/dsb/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/dsb/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ee/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ee/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/el/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/el/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/en_GB/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/en_GB/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/en_US/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/en_US/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/eo/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/eo/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/et/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/et/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/eu/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/eu/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fa/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/fa/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ff/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ff/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fi/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/fi/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fy: -------------------------------------------------------------------------------- 1 | fy_NL -------------------------------------------------------------------------------- /locale/fy_NL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/fy_NL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ga/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ga/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ga_IE/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ga_IE/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/gd/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/gd/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/generate_categories_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/generate_categories_translations.py -------------------------------------------------------------------------------- /locale/gl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/gl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/gu/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/gu/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/gu_IN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/gu_IN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ha/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ha/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/he/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/he/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/hi_IN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/hi_IN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/hr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/hr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/hsb/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/hsb/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ht/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ht/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/hu/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/hu/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/id/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/id/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ig/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ig/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/it/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/it/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ja/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ja/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/km/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/km/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/kn/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/kn/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ko/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ko/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ku/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ku/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/lg/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/lg/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/lij/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/lij/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ln/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ln/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/lt/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/lt/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/mg/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/mg/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/mk/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/mk/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ml/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ml/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/mn/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/mn/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ms/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ms/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/my/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/my/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/nb_NO/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/nb_NO/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ne_NP/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ne_NP/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/nl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/nl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/omg_new_l10n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/omg_new_l10n.sh -------------------------------------------------------------------------------- /locale/or/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/or/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pa: -------------------------------------------------------------------------------- 1 | pa_IN -------------------------------------------------------------------------------- /locale/pa_IN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/pa_IN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/pl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pt: -------------------------------------------------------------------------------- 1 | pt_PT -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/pt_BR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pt_PT/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/pt_PT/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ro/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ro/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/rtl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/rtl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ru/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/si/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/si/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sk/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/sk/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/sl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/son/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/son/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sq/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/sq/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/sr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sr_Latn/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/sr_Latn/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/stats-po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/stats-po.sh -------------------------------------------------------------------------------- /locale/sv/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/sv/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sv_SE/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/sv_SE/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/sw/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/sw/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ta/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ta/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/te/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/te/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/templates/LC_MESSAGES/.messagehash: -------------------------------------------------------------------------------- 1 | 5de40623393439b29e8239e3d0c97892 -------------------------------------------------------------------------------- /locale/templates/LC_MESSAGES/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/templates/LC_MESSAGES/messages.pot -------------------------------------------------------------------------------- /locale/th/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/th/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/tl/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/tl/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/tn/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/tn/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/tr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/tr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/uk/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/uk/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ur/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/ur/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/vi/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/vi/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/wo/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/wo/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/xh/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/xh/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/yo/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/yo/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/zh_CN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/zh_TW/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/zh_TW/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/zh_TW/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/zh_TW/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/zu/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/locale/zu/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package.json -------------------------------------------------------------------------------- /package/iframe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/README.md -------------------------------------------------------------------------------- /package/iframe/app-icons/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/app-icons/120.png -------------------------------------------------------------------------------- /package/iframe/app-icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/app-icons/128.png -------------------------------------------------------------------------------- /package/iframe/app-icons/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/app-icons/60.png -------------------------------------------------------------------------------- /package/iframe/app-icons/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/app-icons/90.png -------------------------------------------------------------------------------- /package/iframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/index.html -------------------------------------------------------------------------------- /package/iframe/js/activities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/js/activities.js -------------------------------------------------------------------------------- /package/iframe/js/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/js/features.js -------------------------------------------------------------------------------- /package/iframe/js/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/js/logger.js -------------------------------------------------------------------------------- /package/iframe/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/js/main.js -------------------------------------------------------------------------------- /package/iframe/js/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/js/messages.js -------------------------------------------------------------------------------- /package/iframe/js/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/js/translations.js -------------------------------------------------------------------------------- /package/iframe/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/manifest.webapp -------------------------------------------------------------------------------- /package/iframe/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/style.css -------------------------------------------------------------------------------- /package/iframe/tests/activities.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/tests/activities.test.js -------------------------------------------------------------------------------- /package/iframe/tests/features.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/tests/features.test.js -------------------------------------------------------------------------------- /package/iframe/tests/messages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/iframe/tests/messages.test.js -------------------------------------------------------------------------------- /package/templates/manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/templates/manifest.webapp -------------------------------------------------------------------------------- /package/templates/settings_local_package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/package/templates/settings_local_package.js -------------------------------------------------------------------------------- /sherlocked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/sherlocked.js -------------------------------------------------------------------------------- /src/app-icons/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/app-icons/120.png -------------------------------------------------------------------------------- /src/app-icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/app-icons/128.png -------------------------------------------------------------------------------- /src/app-icons/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/app-icons/60.png -------------------------------------------------------------------------------- /src/app-icons/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/app-icons/90.png -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/app.html -------------------------------------------------------------------------------- /src/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/dev.html -------------------------------------------------------------------------------- /src/manifests/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/manifests/dev.json -------------------------------------------------------------------------------- /src/manifests/hosted.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/manifests/hosted.webapp -------------------------------------------------------------------------------- /src/manifests/standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/manifests/standard.json -------------------------------------------------------------------------------- /src/media/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/media/css/account.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/account.styl -------------------------------------------------------------------------------- /src/media/css/addon-list.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/addon-list.styl -------------------------------------------------------------------------------- /src/media/css/addon-tiles.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/addon-tiles.styl -------------------------------------------------------------------------------- /src/media/css/app-list-filters.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/app-list-filters.styl -------------------------------------------------------------------------------- /src/media/css/app-list.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/app-list.styl -------------------------------------------------------------------------------- /src/media/css/buttons-loadmore.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/buttons-loadmore.styl -------------------------------------------------------------------------------- /src/media/css/buttons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/buttons.styl -------------------------------------------------------------------------------- /src/media/css/carrier.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/carrier.styl -------------------------------------------------------------------------------- /src/media/css/categories.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/categories.styl -------------------------------------------------------------------------------- /src/media/css/debug.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/debug.styl -------------------------------------------------------------------------------- /src/media/css/detail/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/base.styl -------------------------------------------------------------------------------- /src/media/css/detail/content-ratings.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/content-ratings.styl -------------------------------------------------------------------------------- /src/media/css/detail/header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/header.styl -------------------------------------------------------------------------------- /src/media/css/detail/info.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/info.styl -------------------------------------------------------------------------------- /src/media/css/detail/more-info.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/more-info.styl -------------------------------------------------------------------------------- /src/media/css/detail/post-install-message.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/post-install-message.styl -------------------------------------------------------------------------------- /src/media/css/detail/reviews.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/reviews.styl -------------------------------------------------------------------------------- /src/media/css/detail/upsell.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/upsell.styl -------------------------------------------------------------------------------- /src/media/css/detail/website.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/detail/website.styl -------------------------------------------------------------------------------- /src/media/css/elements--categories.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/elements--categories.styl -------------------------------------------------------------------------------- /src/media/css/elements--select.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/elements--select.styl -------------------------------------------------------------------------------- /src/media/css/feed/brands.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/brands.styl -------------------------------------------------------------------------------- /src/media/css/feed/collections.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/collections.styl -------------------------------------------------------------------------------- /src/media/css/feed/colors.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/colors.styl -------------------------------------------------------------------------------- /src/media/css/feed/curves.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/curves.styl -------------------------------------------------------------------------------- /src/media/css/feed/feed.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/feed.styl -------------------------------------------------------------------------------- /src/media/css/feed/icon-grid.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/icon-grid.styl -------------------------------------------------------------------------------- /src/media/css/feed/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/index.styl -------------------------------------------------------------------------------- /src/media/css/feed/landing.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/landing.styl -------------------------------------------------------------------------------- /src/media/css/feed/layout.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/layout.styl -------------------------------------------------------------------------------- /src/media/css/feed/shelves.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/shelves.styl -------------------------------------------------------------------------------- /src/media/css/feed/websites.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feed/websites.styl -------------------------------------------------------------------------------- /src/media/css/feedback.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/feedback.styl -------------------------------------------------------------------------------- /src/media/css/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/footer.styl -------------------------------------------------------------------------------- /src/media/css/forms.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/forms.styl -------------------------------------------------------------------------------- /src/media/css/header--global.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/header--global.styl -------------------------------------------------------------------------------- /src/media/css/header--search.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/header--search.styl -------------------------------------------------------------------------------- /src/media/css/header--settings.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/header--settings.styl -------------------------------------------------------------------------------- /src/media/css/header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/header.styl -------------------------------------------------------------------------------- /src/media/css/image-deferrer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/image-deferrer.styl -------------------------------------------------------------------------------- /src/media/css/infobox.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/infobox.styl -------------------------------------------------------------------------------- /src/media/css/lib/buttons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/buttons.styl -------------------------------------------------------------------------------- /src/media/css/lib/categories.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/categories.styl -------------------------------------------------------------------------------- /src/media/css/lib/colors.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/colors.styl -------------------------------------------------------------------------------- /src/media/css/lib/feed.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/feed.styl -------------------------------------------------------------------------------- /src/media/css/lib/hambacker.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/hambacker.styl -------------------------------------------------------------------------------- /src/media/css/lib/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/index.styl -------------------------------------------------------------------------------- /src/media/css/lib/layout.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/layout.styl -------------------------------------------------------------------------------- /src/media/css/lib/mixins.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/mixins.styl -------------------------------------------------------------------------------- /src/media/css/lib/spinner.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/spinner.styl -------------------------------------------------------------------------------- /src/media/css/lib/typography.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lib/typography.styl -------------------------------------------------------------------------------- /src/media/css/lightbox.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/lightbox.styl -------------------------------------------------------------------------------- /src/media/css/modal.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/modal.styl -------------------------------------------------------------------------------- /src/media/css/nav--global.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/nav--global.styl -------------------------------------------------------------------------------- /src/media/css/nav--settings.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/nav--settings.styl -------------------------------------------------------------------------------- /src/media/css/newsletter.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/newsletter.styl -------------------------------------------------------------------------------- /src/media/css/notification.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/notification.styl -------------------------------------------------------------------------------- /src/media/css/paginator.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/paginator.styl -------------------------------------------------------------------------------- /src/media/css/personalization.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/personalization.styl -------------------------------------------------------------------------------- /src/media/css/previews.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/previews.styl -------------------------------------------------------------------------------- /src/media/css/reset.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/reset.styl -------------------------------------------------------------------------------- /src/media/css/reviews.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/reviews.styl -------------------------------------------------------------------------------- /src/media/css/search.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/search.styl -------------------------------------------------------------------------------- /src/media/css/site.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/site.styl -------------------------------------------------------------------------------- /src/media/css/sort-toggle.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/sort-toggle.styl -------------------------------------------------------------------------------- /src/media/css/splash.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/splash.styl -------------------------------------------------------------------------------- /src/media/css/standalone.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/standalone.styl -------------------------------------------------------------------------------- /src/media/css/tiles.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/tiles.styl -------------------------------------------------------------------------------- /src/media/css/typography.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/typography.styl -------------------------------------------------------------------------------- /src/media/css/view-all-tab.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/css/view-all-tab.styl -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/FeuraSansWeb-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/FeuraSansWeb-Bold.svg -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/FeuraSansWeb-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/FeuraSansWeb-Bold.woff -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/FeuraSansWeb-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/FeuraSansWeb-Light.svg -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/FeuraSansWeb-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/FeuraSansWeb-Light.woff -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/FeuraSansWeb-Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/FeuraSansWeb-Medium.svg -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/FeuraSansWeb-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/FeuraSansWeb-Medium.woff -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/FeuraSansWeb-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/FeuraSansWeb-Regular.svg -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/FeuraSansWeb-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/FeuraSansWeb-Regular.woff -------------------------------------------------------------------------------- /src/media/fonts/FeuraSans/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FeuraSans/LICENSE -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-bold-webfont.eot -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-bold-webfont.svg -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-bold-webfont.ttf -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-bold-webfont.woff -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-bolditalic-webfont.eot -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-bolditalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-bolditalic-webfont.svg -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-bolditalic-webfont.woff -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-light-webfont.eot -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-light-webfont.svg -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-light-webfont.ttf -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-light-webfont.woff -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-lightitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-lightitalic-webfont.eot -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-lightitalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-lightitalic-webfont.svg -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-lightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-lightitalic-webfont.woff -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-medium-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-medium-webfont.eot -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-medium-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-medium-webfont.svg -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-medium-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-medium-webfont.ttf -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-medium-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-medium-webfont.woff -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-mediumitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-mediumitalic-webfont.eot -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-mediumitalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-mediumitalic-webfont.svg -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-mediumitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-mediumitalic-webfont.ttf -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-mediumitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-mediumitalic-webfont.woff -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-regular-webfont.eot -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-regular-webfont.svg -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-regular-webfont.ttf -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-regular-webfont.woff -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-regularitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-regularitalic-webfont.eot -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-regularitalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-regularitalic-webfont.svg -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-regularitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-regularitalic-webfont.ttf -------------------------------------------------------------------------------- /src/media/fonts/FiraSans/firasansot-regularitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/fonts/FiraSans/firasansot-regularitalic-webfont.woff -------------------------------------------------------------------------------- /src/media/img/app-icons/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/app-icons/120.png -------------------------------------------------------------------------------- /src/media/img/app-icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/app-icons/128.png -------------------------------------------------------------------------------- /src/media/img/app-icons/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/app-icons/60.png -------------------------------------------------------------------------------- /src/media/img/app-icons/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/app-icons/90.png -------------------------------------------------------------------------------- /src/media/img/btn_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/btn_spinner.png -------------------------------------------------------------------------------- /src/media/img/btn_spinner_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/btn_spinner_18.png -------------------------------------------------------------------------------- /src/media/img/btn_spinner_18_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/btn_spinner_18_2x.png -------------------------------------------------------------------------------- /src/media/img/btn_spinner_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/btn_spinner_2x.png -------------------------------------------------------------------------------- /src/media/img/btn_spinner_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/btn_spinner_alt.png -------------------------------------------------------------------------------- /src/media/img/btn_spinner_alt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/btn_spinner_alt_2x.png -------------------------------------------------------------------------------- /src/media/img/carriers/bastacorp-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/bastacorp-category.png -------------------------------------------------------------------------------- /src/media/img/carriers/claro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/claro.png -------------------------------------------------------------------------------- /src/media/img/carriers/congstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/congstar.png -------------------------------------------------------------------------------- /src/media/img/carriers/deutsche_telekom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/deutsche_telekom.svg -------------------------------------------------------------------------------- /src/media/img/carriers/movistar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/movistar.png -------------------------------------------------------------------------------- /src/media/img/carriers/movistar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/movistar.svg -------------------------------------------------------------------------------- /src/media/img/carriers/o2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/o2.jpg -------------------------------------------------------------------------------- /src/media/img/carriers/telenor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/telenor.svg -------------------------------------------------------------------------------- /src/media/img/carriers/vivo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/carriers/vivo.png -------------------------------------------------------------------------------- /src/media/img/grain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/grain.png -------------------------------------------------------------------------------- /src/media/img/icons/addons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/addons.svg -------------------------------------------------------------------------------- /src/media/img/icons/brands/LocalCommunityFavourite-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/LocalCommunityFavourite-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/arts&Entertainment-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/arts&Entertainment-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/books-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/books-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/countrySpecific-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/countrySpecific-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/creativity-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/creativity-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/education-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/education-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/games-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/games-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/groundbreaking-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/groundbreaking-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/health&Fitness-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/health&Fitness-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/hiddenGem-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/hiddenGem-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/lifestyle-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/lifestyle-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/maps&Nav-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/maps&Nav-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/music-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/music-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/mysteryApp-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/mysteryApp-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/news&Weather-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/news&Weather-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/photos&Video-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/photos&Video-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/shopping-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/shopping-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/social-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/social-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/sports-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/sports-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/tools&TimesSavers-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/tools&TimesSavers-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/travel-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/travel-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/brands/work&Business-40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/brands/work&Business-40px.png -------------------------------------------------------------------------------- /src/media/img/icons/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/clear.png -------------------------------------------------------------------------------- /src/media/img/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/close.png -------------------------------------------------------------------------------- /src/media/img/icons/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/placeholder.svg -------------------------------------------------------------------------------- /src/media/img/icons/placeholder_preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/placeholder_preview.svg -------------------------------------------------------------------------------- /src/media/img/icons/ratings/CLASSIND_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/CLASSIND_10.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/CLASSIND_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/CLASSIND_12.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/CLASSIND_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/CLASSIND_14.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/CLASSIND_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/CLASSIND_16.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/CLASSIND_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/CLASSIND_18.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/CLASSIND_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/CLASSIND_L.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/ESRB_ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/ESRB_ao.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/ESRB_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/ESRB_e.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/ESRB_e10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/ESRB_e10.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/ESRB_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/ESRB_m.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/ESRB_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/ESRB_t.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/USK_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/USK_0.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/USK_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/USK_12.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/USK_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/USK_16.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/USK_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/USK_18.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/USK_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/USK_6.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/USK_RR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/USK_RR.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_discrimination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_discrimination.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_drugs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_drugs.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_fear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_fear.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_gambling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_gambling.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_inapp_purchase_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_inapp_purchase_option.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_language.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_location_data_sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_location_data_sharing.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_nudity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_nudity.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_online.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_personal_data_sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_personal_data_sharing.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_sex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_sex.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_social_interaction_functionality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_social_interaction_functionality.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/descriptors/pegi_violence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/descriptors/pegi_violence.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/esrb_ao_spa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/esrb_ao_spa.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/esrb_e10_spa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/esrb_e10_spa.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/esrb_e_spa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/esrb_e_spa.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/esrb_m_spa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/esrb_m_spa.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/esrb_t_spa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/esrb_t_spa.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/generic_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/generic_12.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/generic_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/generic_16.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/generic_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/generic_18.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/generic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/generic_3.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/generic_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/generic_7.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/generic_rp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/generic_rp.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/interactives/ESRB_digital-purchases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/interactives/ESRB_digital-purchases.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/interactives/ESRB_shares-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/interactives/ESRB_shares-info.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/interactives/ESRB_shares-info_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/interactives/ESRB_shares-info_small.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/interactives/ESRB_shares-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/interactives/ESRB_shares-location.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/interactives/ESRB_shares-location_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/interactives/ESRB_shares-location_small.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/interactives/ESRB_users-interact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/interactives/ESRB_users-interact.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/interactives/ESRB_users-interact_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/interactives/ESRB_users-interact_small.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/pegi_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/pegi_12.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/pegi_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/pegi_16.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/pegi_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/pegi_18.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/pegi_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/pegi_3.png -------------------------------------------------------------------------------- /src/media/img/icons/ratings/pegi_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/ratings/pegi_7.png -------------------------------------------------------------------------------- /src/media/img/icons/refresh-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/refresh-icon.svg -------------------------------------------------------------------------------- /src/media/img/icons/slider_arrow-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/slider_arrow-2x.png -------------------------------------------------------------------------------- /src/media/img/icons/slider_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/icons/slider_arrow.png -------------------------------------------------------------------------------- /src/media/img/logos/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/128.png -------------------------------------------------------------------------------- /src/media/img/logos/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/32.png -------------------------------------------------------------------------------- /src/media/img/logos/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/64.png -------------------------------------------------------------------------------- /src/media/img/logos/firefox-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/firefox-256.png -------------------------------------------------------------------------------- /src/media/img/logos/firefox-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/firefox-64.png -------------------------------------------------------------------------------- /src/media/img/logos/footzilla-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/footzilla-2x.png -------------------------------------------------------------------------------- /src/media/img/logos/footzilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/footzilla.png -------------------------------------------------------------------------------- /src/media/img/logos/footzilla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/footzilla.svg -------------------------------------------------------------------------------- /src/media/img/logos/full-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/full-color.svg -------------------------------------------------------------------------------- /src/media/img/logos/full-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/logos/full-white.svg -------------------------------------------------------------------------------- /src/media/img/marketplace_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/marketplace_logo.svg -------------------------------------------------------------------------------- /src/media/img/nav/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/back.svg -------------------------------------------------------------------------------- /src/media/img/nav/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/clear.svg -------------------------------------------------------------------------------- /src/media/img/nav/expand_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/expand_arrow.svg -------------------------------------------------------------------------------- /src/media/img/nav/full-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/full-color.svg -------------------------------------------------------------------------------- /src/media/img/nav/full-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/full-white.svg -------------------------------------------------------------------------------- /src/media/img/nav/header-logo-beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/header-logo-beta.svg -------------------------------------------------------------------------------- /src/media/img/nav/header-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/header-logo.svg -------------------------------------------------------------------------------- /src/media/img/nav/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/menu.svg -------------------------------------------------------------------------------- /src/media/img/nav/menu_sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/menu_sprite.svg -------------------------------------------------------------------------------- /src/media/img/nav/rocket-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/rocket-color.svg -------------------------------------------------------------------------------- /src/media/img/nav/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/search.svg -------------------------------------------------------------------------------- /src/media/img/nav/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/nav/user.svg -------------------------------------------------------------------------------- /src/media/img/online-status-beacon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/online-status-beacon.gif -------------------------------------------------------------------------------- /src/media/img/pretty/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/alert.svg -------------------------------------------------------------------------------- /src/media/img/pretty/alert_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/alert_triangle.svg -------------------------------------------------------------------------------- /src/media/img/pretty/arrow-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/arrow-l.svg -------------------------------------------------------------------------------- /src/media/img/pretty/back_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/back_arrow.svg -------------------------------------------------------------------------------- /src/media/img/pretty/back_arrow_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/back_arrow_active.svg -------------------------------------------------------------------------------- /src/media/img/pretty/categories-sprite-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/categories-sprite-alt.svg -------------------------------------------------------------------------------- /src/media/img/pretty/categories-sprite-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/categories-sprite-black.svg -------------------------------------------------------------------------------- /src/media/img/pretty/categories-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/categories-sprite.svg -------------------------------------------------------------------------------- /src/media/img/pretty/cats-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/cats-sprite.svg -------------------------------------------------------------------------------- /src/media/img/pretty/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/close.svg -------------------------------------------------------------------------------- /src/media/img/pretty/close_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/close_active.svg -------------------------------------------------------------------------------- /src/media/img/pretty/close_lightbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/close_lightbox.svg -------------------------------------------------------------------------------- /src/media/img/pretty/collection_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/collection_default.png -------------------------------------------------------------------------------- /src/media/img/pretty/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/dropdown.svg -------------------------------------------------------------------------------- /src/media/img/pretty/dropdown_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/dropdown_active.svg -------------------------------------------------------------------------------- /src/media/img/pretty/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/gear.svg -------------------------------------------------------------------------------- /src/media/img/pretty/list-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/list-toggle.svg -------------------------------------------------------------------------------- /src/media/img/pretty/marketplace-beta-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/marketplace-beta-logo.png -------------------------------------------------------------------------------- /src/media/img/pretty/marketplace-beta-logo2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/marketplace-beta-logo2X.png -------------------------------------------------------------------------------- /src/media/img/pretty/marketplace-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/marketplace-icon.svg -------------------------------------------------------------------------------- /src/media/img/pretty/marketplace_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/marketplace_logo.png -------------------------------------------------------------------------------- /src/media/img/pretty/no-connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/no-connection.svg -------------------------------------------------------------------------------- /src/media/img/pretty/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/rocket.png -------------------------------------------------------------------------------- /src/media/img/pretty/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/search.svg -------------------------------------------------------------------------------- /src/media/img/pretty/settings_gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/settings_gear.svg -------------------------------------------------------------------------------- /src/media/img/pretty/settings_gear_active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/settings_gear_active.svg -------------------------------------------------------------------------------- /src/media/img/pretty/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/stars.svg -------------------------------------------------------------------------------- /src/media/img/pretty/stars_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/stars_large.svg -------------------------------------------------------------------------------- /src/media/img/pretty/tick-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/pretty/tick-white.svg -------------------------------------------------------------------------------- /src/media/img/promo/basecamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/promo/basecamp.png -------------------------------------------------------------------------------- /src/media/img/promo/chess-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/promo/chess-1.png -------------------------------------------------------------------------------- /src/media/img/promo/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/promo/games.png -------------------------------------------------------------------------------- /src/media/img/promo/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/promo/generic.png -------------------------------------------------------------------------------- /src/media/img/promo/goldnuggets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/promo/goldnuggets.png -------------------------------------------------------------------------------- /src/media/img/promo/productivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/img/promo/productivity.png -------------------------------------------------------------------------------- /src/media/js/app_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/app_list.js -------------------------------------------------------------------------------- /src/media/js/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/apps.js -------------------------------------------------------------------------------- /src/media/js/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/buttons.js -------------------------------------------------------------------------------- /src/media/js/carrier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/carrier.js -------------------------------------------------------------------------------- /src/media/js/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/categories.js -------------------------------------------------------------------------------- /src/media/js/compat_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/compat_filter.js -------------------------------------------------------------------------------- /src/media/js/consumer_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/consumer_info.js -------------------------------------------------------------------------------- /src/media/js/content-ratings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/content-ratings.js -------------------------------------------------------------------------------- /src/media/js/edbrands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/edbrands.js -------------------------------------------------------------------------------- /src/media/js/elements/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/elements/categories.js -------------------------------------------------------------------------------- /src/media/js/elements/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/elements/select.js -------------------------------------------------------------------------------- /src/media/js/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/feed.js -------------------------------------------------------------------------------- /src/media/js/feed_websites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/feed_websites.js -------------------------------------------------------------------------------- /src/media/js/header_footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/header_footer.js -------------------------------------------------------------------------------- /src/media/js/helpers_local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/helpers_local.js -------------------------------------------------------------------------------- /src/media/js/image-deferrer-mkt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/image-deferrer-mkt.js -------------------------------------------------------------------------------- /src/media/js/image-deferrer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/image-deferrer.js -------------------------------------------------------------------------------- /src/media/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/init.js -------------------------------------------------------------------------------- /src/media/js/installer_direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/installer_direct.js -------------------------------------------------------------------------------- /src/media/js/installer_iframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/installer_iframe.js -------------------------------------------------------------------------------- /src/media/js/installer_mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/installer_mock.js -------------------------------------------------------------------------------- /src/media/js/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/keys.js -------------------------------------------------------------------------------- /src/media/js/linefit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/linefit.js -------------------------------------------------------------------------------- /src/media/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/main.js -------------------------------------------------------------------------------- /src/media/js/mobilenetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/mobilenetwork.js -------------------------------------------------------------------------------- /src/media/js/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/nav.js -------------------------------------------------------------------------------- /src/media/js/newsletter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/newsletter.js -------------------------------------------------------------------------------- /src/media/js/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/overlay.js -------------------------------------------------------------------------------- /src/media/js/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/payments.js -------------------------------------------------------------------------------- /src/media/js/perf_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/perf_events.js -------------------------------------------------------------------------------- /src/media/js/perf_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/perf_helper.js -------------------------------------------------------------------------------- /src/media/js/previews-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/previews-buttons.js -------------------------------------------------------------------------------- /src/media/js/previews-lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/previews-lightbox.js -------------------------------------------------------------------------------- /src/media/js/previews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/previews.js -------------------------------------------------------------------------------- /src/media/js/ratingwidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/ratingwidget.js -------------------------------------------------------------------------------- /src/media/js/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/reviews.js -------------------------------------------------------------------------------- /src/media/js/rewriters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/rewriters.js -------------------------------------------------------------------------------- /src/media/js/route_api_args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/route_api_args.js -------------------------------------------------------------------------------- /src/media/js/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/routes.js -------------------------------------------------------------------------------- /src/media/js/settings_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/settings_app.js -------------------------------------------------------------------------------- /src/media/js/settings_local.js.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/settings_local.js.dist -------------------------------------------------------------------------------- /src/media/js/settings_local_hosted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/settings_local_hosted.js -------------------------------------------------------------------------------- /src/media/js/settings_local_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/settings_local_test.js -------------------------------------------------------------------------------- /src/media/js/settings_local_webqa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/settings_local_webqa.js -------------------------------------------------------------------------------- /src/media/js/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/tracking.js -------------------------------------------------------------------------------- /src/media/js/tracking_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/tracking_events.js -------------------------------------------------------------------------------- /src/media/js/truncator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/truncator.js -------------------------------------------------------------------------------- /src/media/js/update_banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/update_banner.js -------------------------------------------------------------------------------- /src/media/js/user_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/user_helpers.js -------------------------------------------------------------------------------- /src/media/js/utils_local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/utils_local.js -------------------------------------------------------------------------------- /src/media/js/views/addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/addon.js -------------------------------------------------------------------------------- /src/media/js/views/addon/abuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/addon/abuse.js -------------------------------------------------------------------------------- /src/media/js/views/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/addons.js -------------------------------------------------------------------------------- /src/media/js/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/app.js -------------------------------------------------------------------------------- /src/media/js/views/app/abuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/app/abuse.js -------------------------------------------------------------------------------- /src/media/js/views/app/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/app/privacy.js -------------------------------------------------------------------------------- /src/media/js/views/app/ratings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/app/ratings.js -------------------------------------------------------------------------------- /src/media/js/views/app/ratings/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/app/ratings/add.js -------------------------------------------------------------------------------- /src/media/js/views/app/ratings/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/app/ratings/edit.js -------------------------------------------------------------------------------- /src/media/js/views/app/ratings/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/app/ratings/rating.js -------------------------------------------------------------------------------- /src/media/js/views/app/receipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/app/receipt.js -------------------------------------------------------------------------------- /src/media/js/views/carrier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/carrier.js -------------------------------------------------------------------------------- /src/media/js/views/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/category.js -------------------------------------------------------------------------------- /src/media/js/views/category_websites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/category_websites.js -------------------------------------------------------------------------------- /src/media/js/views/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/debug.js -------------------------------------------------------------------------------- /src/media/js/views/debug_features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/debug_features.js -------------------------------------------------------------------------------- /src/media/js/views/feed_landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/feed_landing.js -------------------------------------------------------------------------------- /src/media/js/views/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/feedback.js -------------------------------------------------------------------------------- /src/media/js/views/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/homepage.js -------------------------------------------------------------------------------- /src/media/js/views/homescreens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/homescreens.js -------------------------------------------------------------------------------- /src/media/js/views/langpacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/langpacks.js -------------------------------------------------------------------------------- /src/media/js/views/new_apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/new_apps.js -------------------------------------------------------------------------------- /src/media/js/views/new_websites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/new_websites.js -------------------------------------------------------------------------------- /src/media/js/views/newsletter_signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/newsletter_signup.js -------------------------------------------------------------------------------- /src/media/js/views/popular_apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/popular_apps.js -------------------------------------------------------------------------------- /src/media/js/views/popular_websites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/popular_websites.js -------------------------------------------------------------------------------- /src/media/js/views/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/privacy.js -------------------------------------------------------------------------------- /src/media/js/views/purchases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/purchases.js -------------------------------------------------------------------------------- /src/media/js/views/recommended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/recommended.js -------------------------------------------------------------------------------- /src/media/js/views/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/search.js -------------------------------------------------------------------------------- /src/media/js/views/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/settings.js -------------------------------------------------------------------------------- /src/media/js/views/terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/terms.js -------------------------------------------------------------------------------- /src/media/js/views/usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/usage.js -------------------------------------------------------------------------------- /src/media/js/views/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/website.js -------------------------------------------------------------------------------- /src/media/js/views/website/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/views/website/issue.js -------------------------------------------------------------------------------- /src/media/js/webactivities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/media/js/webactivities.js -------------------------------------------------------------------------------- /src/templates/_includes/abuse_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/abuse_modal.html -------------------------------------------------------------------------------- /src/templates/_includes/back_to_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/back_to_app.html -------------------------------------------------------------------------------- /src/templates/_includes/carrier_apps_banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/carrier_apps_banner.html -------------------------------------------------------------------------------- /src/templates/_includes/content_ratings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/content_ratings.html -------------------------------------------------------------------------------- /src/templates/_includes/feedback_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/feedback_modal.html -------------------------------------------------------------------------------- /src/templates/_includes/flag_review_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/flag_review_modal.html -------------------------------------------------------------------------------- /src/templates/_includes/post_install_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/post_install_message.html -------------------------------------------------------------------------------- /src/templates/_includes/review_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/review_modal.html -------------------------------------------------------------------------------- /src/templates/_includes/reviews_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/reviews_sidebar.html -------------------------------------------------------------------------------- /src/templates/_includes/reviews_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_includes/reviews_summary.html -------------------------------------------------------------------------------- /src/templates/_macros/addon_tile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/addon_tile.html -------------------------------------------------------------------------------- /src/templates/_macros/app_tile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/app_tile.html -------------------------------------------------------------------------------- /src/templates/_macros/deferred_icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/deferred_icon.html -------------------------------------------------------------------------------- /src/templates/_macros/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/detail.html -------------------------------------------------------------------------------- /src/templates/_macros/emaillink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/emaillink.html -------------------------------------------------------------------------------- /src/templates/_macros/feed_app_tile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/feed_app_tile.html -------------------------------------------------------------------------------- /src/templates/_macros/feed_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/feed_item.html -------------------------------------------------------------------------------- /src/templates/_macros/feed_websites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/feed_websites.html -------------------------------------------------------------------------------- /src/templates/_macros/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/forms.html -------------------------------------------------------------------------------- /src/templates/_macros/market_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/market_button.html -------------------------------------------------------------------------------- /src/templates/_macros/more_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/more_button.html -------------------------------------------------------------------------------- /src/templates/_macros/previews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/previews.html -------------------------------------------------------------------------------- /src/templates/_macros/review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/review.html -------------------------------------------------------------------------------- /src/templates/_macros/sort_toggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/sort_toggle.html -------------------------------------------------------------------------------- /src/templates/_macros/stars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/_macros/stars.html -------------------------------------------------------------------------------- /src/templates/addon/abuse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/addon/abuse.html -------------------------------------------------------------------------------- /src/templates/addon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/addon/index.html -------------------------------------------------------------------------------- /src/templates/addon/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/addon/list.html -------------------------------------------------------------------------------- /src/templates/app/abuse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/app/abuse.html -------------------------------------------------------------------------------- /src/templates/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/app/index.html -------------------------------------------------------------------------------- /src/templates/app/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/app/privacy.html -------------------------------------------------------------------------------- /src/templates/app/receipt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/app/receipt.html -------------------------------------------------------------------------------- /src/templates/carrier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/carrier.html -------------------------------------------------------------------------------- /src/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/categories.html -------------------------------------------------------------------------------- /src/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/category.html -------------------------------------------------------------------------------- /src/templates/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/debug.html -------------------------------------------------------------------------------- /src/templates/debug_features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/debug_features.html -------------------------------------------------------------------------------- /src/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/errors/404.html -------------------------------------------------------------------------------- /src/templates/errors/fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/errors/fragment.html -------------------------------------------------------------------------------- /src/templates/errors/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/errors/pagination.html -------------------------------------------------------------------------------- /src/templates/feed/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/feed/app.html -------------------------------------------------------------------------------- /src/templates/feed/collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/feed/collection.html -------------------------------------------------------------------------------- /src/templates/feed/editorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/feed/editorial.html -------------------------------------------------------------------------------- /src/templates/feed/feed_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/feed/feed_item.html -------------------------------------------------------------------------------- /src/templates/feed/shelf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/feed/shelf.html -------------------------------------------------------------------------------- /src/templates/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/feedback.html -------------------------------------------------------------------------------- /src/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/footer.html -------------------------------------------------------------------------------- /src/templates/fxos_only_banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/fxos_only_banner.html -------------------------------------------------------------------------------- /src/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/header.html -------------------------------------------------------------------------------- /src/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/homepage.html -------------------------------------------------------------------------------- /src/templates/langpacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/langpacks.html -------------------------------------------------------------------------------- /src/templates/marketplace-update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/marketplace-update.html -------------------------------------------------------------------------------- /src/templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/nav.html -------------------------------------------------------------------------------- /src/templates/newsletter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/newsletter.html -------------------------------------------------------------------------------- /src/templates/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/privacy.html -------------------------------------------------------------------------------- /src/templates/product_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/product_list.html -------------------------------------------------------------------------------- /src/templates/purchases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/purchases.html -------------------------------------------------------------------------------- /src/templates/ratings/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/ratings/add.html -------------------------------------------------------------------------------- /src/templates/ratings/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/ratings/edit.html -------------------------------------------------------------------------------- /src/templates/ratings/flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/ratings/flag.html -------------------------------------------------------------------------------- /src/templates/ratings/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/ratings/main.html -------------------------------------------------------------------------------- /src/templates/ratings/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/ratings/rating.html -------------------------------------------------------------------------------- /src/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/search.html -------------------------------------------------------------------------------- /src/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/settings.html -------------------------------------------------------------------------------- /src/templates/shutdown_banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/shutdown_banner.html -------------------------------------------------------------------------------- /src/templates/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/terms.html -------------------------------------------------------------------------------- /src/templates/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/usage.html -------------------------------------------------------------------------------- /src/templates/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/website/index.html -------------------------------------------------------------------------------- /src/templates/website/issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/src/templates/website/issue.html -------------------------------------------------------------------------------- /test-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/test-main.js -------------------------------------------------------------------------------- /tests/captures/README.md: -------------------------------------------------------------------------------- 1 | Test captures live here. 2 | -------------------------------------------------------------------------------- /tests/lib/app_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/lib/app_list.js -------------------------------------------------------------------------------- /tests/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/lib/constants.js -------------------------------------------------------------------------------- /tests/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/lib/helpers.js -------------------------------------------------------------------------------- /tests/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/serve.sh -------------------------------------------------------------------------------- /tests/ui/app/abuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/app/abuse.js -------------------------------------------------------------------------------- /tests/ui/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/app/index.js -------------------------------------------------------------------------------- /tests/ui/app/reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/app/reviews.js -------------------------------------------------------------------------------- /tests/ui/app_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/app_list.js -------------------------------------------------------------------------------- /tests/ui/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/category.js -------------------------------------------------------------------------------- /tests/ui/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/feed.js -------------------------------------------------------------------------------- /tests/ui/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/feedback.js -------------------------------------------------------------------------------- /tests/ui/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/header.js -------------------------------------------------------------------------------- /tests/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/index.js -------------------------------------------------------------------------------- /tests/ui/installs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/installs.js -------------------------------------------------------------------------------- /tests/ui/langpacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/langpacks.js -------------------------------------------------------------------------------- /tests/ui/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/nav.js -------------------------------------------------------------------------------- /tests/ui/platform_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/platform_selector.js -------------------------------------------------------------------------------- /tests/ui/previews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/previews.js -------------------------------------------------------------------------------- /tests/ui/scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/scroll.js -------------------------------------------------------------------------------- /tests/ui/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/search.js -------------------------------------------------------------------------------- /tests/ui/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/settings.js -------------------------------------------------------------------------------- /tests/ui/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/tracking.js -------------------------------------------------------------------------------- /tests/ui/update_banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/update_banner.js -------------------------------------------------------------------------------- /tests/ui/website/issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/ui/website/issue.js -------------------------------------------------------------------------------- /tests/unit/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/apps.js -------------------------------------------------------------------------------- /tests/unit/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/buttons.js -------------------------------------------------------------------------------- /tests/unit/compat_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/compat_filter.js -------------------------------------------------------------------------------- /tests/unit/consumer_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/consumer_info.js -------------------------------------------------------------------------------- /tests/unit/elements--categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/elements--categories.js -------------------------------------------------------------------------------- /tests/unit/elements--select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/elements--select.js -------------------------------------------------------------------------------- /tests/unit/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/helpers.js -------------------------------------------------------------------------------- /tests/unit/installer_direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/installer_direct.js -------------------------------------------------------------------------------- /tests/unit/installer_mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/installer_mock.js -------------------------------------------------------------------------------- /tests/unit/mobilenetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/mobilenetwork.js -------------------------------------------------------------------------------- /tests/unit/payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/payments.js -------------------------------------------------------------------------------- /tests/unit/rewriters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/rewriters.js -------------------------------------------------------------------------------- /tests/unit/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/settings.js -------------------------------------------------------------------------------- /tests/unit/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/template.js -------------------------------------------------------------------------------- /tests/unit/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/tracking.js -------------------------------------------------------------------------------- /tests/unit/user_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/fireplace/HEAD/tests/unit/user_helpers.js --------------------------------------------------------------------------------