Files
send/app
timvisee 1520942ac9 Fix UI error after upload when share link is too long
The QR-code generation logic had a character limit. This broke the
upload page when the share URL is too long. This has now been fixed to
support an arbitrary number of characters.

Fixes https://gitlab.com/timvisee/send/-/issues/19
2021-07-08 21:21:35 +02:00
..
2021-03-15 19:56:51 +01:00
2018-12-18 13:55:46 -08:00
2019-07-29 15:26:11 -07:00
2019-03-12 08:37:43 -07:00
2021-07-08 21:20:27 +02:00
2019-11-12 19:09:07 +01:00
2019-08-02 12:03:53 -07:00
2021-04-12 15:19:02 +02: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.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