1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00

Improve the frontend (API v2 functionalities) (#18)

* Fix line number height issue

* Fix notification container position

* Remove line wrapping

* Switch to the new API

* Rework JS & implement paste editing

* Implement paste reports

* Document the report webhook
This commit is contained in:
Lukas Schulte Pelkum
2021-07-23 23:39:37 +02:00
committed by GitHub
parent 149abf77f1
commit 70c4392390
17 changed files with 685 additions and 350 deletions

5
web/assets/js/app.js Normal file
View File

@@ -0,0 +1,5 @@
import * as Spinner from "./modules/spinner.js";
import * as State from "./modules/state.js";
// Initialize the application state
Spinner.surround(State.initialize);