send/app
Danny Coates 1bb1e8123f
Merge pull request #1076 from mozilla/i1059
don't make title a link on android
2019-01-08 14:14:45 -08:00
..
ui Merge pull request #1076 from mozilla/i1059 2019-01-08 14:14:45 -08:00
.eslintrc.yml
api.js Add setApiUrlPrefix and use it in the android version. 2018-11-19 15:10:57 -05:00
archive.js don't add zero length files (also directories) 2019-01-03 16:12:40 -08:00
capabilities.js initial state refactor 2018-12-13 11:12:06 -08:00
controller.js signup dialog changes 2018-12-21 11:40:52 -08:00
cryptofill.js load cryptofill.js async 2018-11-26 10:36:49 -08:00
dragManager.js fixes #1013. dragging page elements 2018-11-19 10:48:52 -08:00
ece.js
experiments.js
fileReceiver.js Add setApiUrlPrefix and use it in the android version. 2018-11-19 15:10:57 -05:00
fileSender.js
fxa.js fixed some old TODOs 2018-12-18 13:55:46 -08:00
keychain.js
locale.js reimplemented l10n using dynamic import() (#1012) 2018-11-20 09:50:59 -05:00
main.css Update vnext android ui (#1036) 2018-12-13 11:36:03 -05:00
main.js use one Archive instance for state.archive 2018-12-21 10:54:38 -08:00
metrics.js fixed some old TODOs 2018-12-18 13:55:46 -08:00
ownedFile.js
pasteManager.js added password to upload form 2018-11-01 10:44:45 -07:00
readme.md
routes.js fixed filelist sync on initial login and after upload 2018-12-12 10:14:06 -08:00
serviceWorker.js fixed some old TODOs 2018-12-18 13:55:46 -08:00
storage.js
streams.js
user.js fixed some old TODOs 2018-12-18 13:55:46 -08:00
utils.js don't make title a link on android. fixes #1059 2019-01-08 13:53:53 -08:00
zip.js

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