send/app
2019-06-05 11:58:11 +03:00
..
ui a couple promo style tweaks 2019-05-31 09:18:20 -07:00
.eslintrc.yml
api.js Really switch the android beta to use send.firefox.com. 2019-03-12 13:59:30 -04:00
archive.js added /config endpoint, use fewer globals (#1172) 2019-02-26 10:39:50 -08:00
capabilities.js added survey dialog. closes #1307 2019-05-01 09:47:04 -07:00
controller.js added survey dialog. closes #1307 2019-05-01 09:47:04 -07:00
dragManager.js
ece.js fixed size limit on server to include crypto overhead 2019-03-06 10:31:50 -08:00
experiments.js added signin button color experiment. closes #1306 (#1320) 2019-05-03 13:10:56 -04:00
fileReceiver.js
fileSender.js fixed size limit on server to include crypto overhead 2019-03-06 10:31:50 -08:00
fxa.js
keychain.js removed old encryption key implementation 2019-04-11 10:24:29 -07:00
locale.js
main.css Fixes blurry Sign in button when hovered 2019-06-05 11:58:11 +03:00
main.js added signin button color experiment. closes #1306 (#1320) 2019-05-03 13:10:56 -04:00
metrics.js added signin button color experiment. closes #1306 (#1320) 2019-05-03 13:10:56 -04:00
ownedFile.js error if file from localStorage is old (no manifest) 2019-03-12 07:39:50 -07:00
pasteManager.js fixed paste email bug 2019-03-12 08:37:43 -07:00
readme.md
routes.js enabled accounts on Edge 2019-02-25 11:44:44 -08:00
serviceWorker.js
storage.js added signin button color experiment. closes #1306 (#1320) 2019-05-03 13:10:56 -04:00
streams.js
user.js added survey dialog. closes #1307 2019-05-01 09:47:04 -07:00
utils.js added survey dialog. closes #1307 2019-05-01 09:47:04 -07:00
zip.js fixed incorrect uncompressed size in zip 2019-03-16 09:19:28 -07:00

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