fox-send/app
Danny Coates 3c4f502eac
add flex-none to radio buttons on report page. fixes #1509
2020-08-03 09:02:41 -07:00
..
ui add flex-none to radio buttons on report page. fixes #1509 2020-08-03 09:02:41 -07:00
.eslintrc.yml a few changes to make A/B testing easier 2017-08-25 09:44:52 -07:00
api.js implemented download tokens 2020-07-29 11:02:22 -07:00
archive.js added /config endpoint, use fewer globals (#1172) 2019-02-26 10:39:50 -08:00
capabilities.js restrict "share" to mobile, fixes #1505 2020-07-31 08:57:00 -07:00
controller.js handle reports for files that have been already been deleted 2020-07-30 10:19:29 -07:00
crc32.js fixed local without fxa 2020-07-28 08:23:59 -07:00
dragManager.js fixes #1013. dragging page elements 2018-11-19 10:48:52 -08:00
ece.js remove browser dependency on "buffer" 2020-07-27 19:23:03 -07:00
experiments.js added signin button color experiment. closes #1306 (#1320) 2019-05-03 13:10:56 -04:00
fileReceiver.js implemented download tokens 2020-07-29 11:02:22 -07:00
fileSender.js added size and duration to connection error reporting 2019-08-08 09:52:22 -07:00
fxa.js remove browser dependency on "buffer" 2020-07-27 19:23:03 -07:00
keychain.js removed old encryption key implementation 2019-04-11 10:24:29 -07:00
locale.js updated deps 2019-07-29 15:26:11 -07:00
main.css fix main section height. fixes #1499 2020-07-31 08:57:00 -07:00
main.js update promo to be for the vpn 2020-03-31 22:03:08 +02:00
metrics.js added size and duration to connection error reporting 2019-08-08 09:52:22 -07: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 Fixes link to routes file 2019-11-12 19:09:07 +01:00
routes.js refactored storage, style tweaks 2020-07-25 11:25:55 -07:00
serviceWorker.js implemented download tokens 2020-07-29 11:02:22 -07:00
storage.js implemented download tokens 2020-07-29 11:02:22 -07:00
streams.js updated eslint config 2019-08-02 12:03:53 -07:00
user.js fixed local without fxa 2020-07-28 08:23:59 -07:00
utils.js restrict "share" to mobile, fixes #1505 2020-07-31 08:57:00 -07:00
zip.js remove browser dependency on "buffer" 2020-07-27 19:23:03 -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.js is 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