diff options
| author | Joris Guyonvarch | 2026-04-18 11:04:47 +0200 |
|---|---|---|
| committer | Joris Guyonvarch | 2026-04-18 11:05:17 +0200 |
| commit | 6d1300640051baa23360846197b54e1e69ae32e3 (patch) | |
| tree | 46219dcf5b5c9e5da0920ffd966d49ba80947a9b /assets | |
| parent | b35589eb90f2e5ee5521964e64eb578e9eb99032 (diff) | |
Add balancing capabilities
If payment are too unbalanced, it’s easier to make a transfer.
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/main.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/assets/main.js b/assets/main.js index c83e4fc..7ca4306 100644 --- a/assets/main.js +++ b/assets/main.js @@ -41,6 +41,15 @@ if (path == '/login') { trim_inputs_on_blur() control_remove_button() +} else if (path == '/balancing') { // Balancing creation + + trim_inputs_on_blur() + +} else if (path.startsWith('/balancing/')) { // Balancing modification + + trim_inputs_on_blur() + control_remove_button() + } else if (path == '/balance') { } else if (path == '/statistics') { |
