24
1
Fork 0
drop.chapril.org-firefoxsend/app
Danny Coates 1e62aa976d reimplemented l10n using dynamic import() (#1012)
this should greatly reduce the complexity of the l10n code
and build pipeline and eliminate the most common error
seen in sentry logs (no translate function)
2018-11-20 09:50:59 -05:00
..
ui Merge pull request #1010 from mozilla/totalSize 2018-11-19 21:37:31 -08:00
.eslintrc.yml a few changes to make A/B testing easier 2017-08-25 09:44:52 -07:00
api.js Add setApiUrlPrefix and use it in the android version. 2018-11-19 15:10:57 -05:00
archive.js a new approach for the ui 2018-11-01 10:43:43 -07:00
capabilities.js reimplemented l10n using dynamic import() (#1012) 2018-11-20 09:50:59 -05:00
controller.js fixes #1013. dragging page elements 2018-11-19 10:48:52 -08:00
dragManager.js fixes #1013. dragging page elements 2018-11-19 10:48:52 -08:00
ece.js make ece encrypt key extractable for Edge 2018-07-31 15:37:04 -07:00
experiments.js exclude fxios from fxPromo banner. fixes #753 2018-02-15 11:49:41 -08:00
fileReceiver.js Add setApiUrlPrefix and use it in the android version. 2018-11-19 15:10:57 -05:00
fileSender.js added fxa auth to /ws 2018-08-31 14:30:50 -07:00
fxa.js Implement the mechanics of fxa login on android, but don't show ui fo… (#1000) 2018-11-08 16:35:19 -05:00
keychain.js removed unused crypto functions 2018-09-04 10:41:45 -07:00
locale.js reimplemented l10n using dynamic import() (#1012) 2018-11-20 09:50:59 -05:00
main.css fixed filename word-break 2018-11-05 15:46:49 -08:00
main.js reimplemented l10n using dynamic import() (#1012) 2018-11-20 09:50:59 -05:00
metrics.js reinstate the 'exited' metric. fixes #653 2018-01-19 15:07:05 -08:00
ownedFile.js added fxa auth to /params 2018-08-31 11:43:56 -07:00
pasteManager.js added password to upload form 2018-11-01 10:44:45 -07:00
readme.md updated docs 2018-03-07 15:01:08 -08:00
routes.js converting some things to choo/component 2018-11-15 15:43:32 -08:00
serviceWorker.js delete old service worker caches 2018-11-16 12:32:32 -08:00
storage.js Implemented FxA 2018-08-30 22:10:08 -07:00
streams.js Implemented multi-file upload/download 2018-07-27 16:40:52 -07:00
user.js Implement the mechanics of fxa login on android, but don't show ui fo… (#1000) 2018-11-08 16:35:19 -05:00
utils.js don't render expired uploads 2018-11-16 12:30:15 -08:00
zip.js Implemented multi-file upload/download 2018-07-27 16:40:52 -07:00

readme.md

Application Code

app/ contains the browser code that gets bundled into app.[hash].js. It's got all the logic, crypto, and UI. All of it gets used in the browser, and some of it by the server for server side rendering.

The main entrypoint for the browser is main.js and on the server routes/index.js gets imported by /server/routes/pages.js

  • pages contains display logic an markup for pages
  • routes contains route definitions and logic
  • templates contains ui elements smaller than pages