Split the JavaScript for the account selector from transaction-form.js to account-selector.js, to modularize the complex JavaScript.

This commit is contained in:
2023-02-28 22:33:14 +08:00
parent 1b5e516413
commit 3c413497ae
3 changed files with 188 additions and 163 deletions

View File

@ -24,6 +24,7 @@ First written: 2023/2/26
{% block accounting_scripts %}
<script src="{{ url_for("accounting.static", filename="js/drag-and-drop-reorder.js") }}"></script>
<script src="{{ url_for("accounting.static", filename="js/transaction-form.js") }}"></script>
<script src="{{ url_for("accounting.static", filename="js/account-selector.js") }}"></script>
<script src="{{ url_for("accounting.static", filename="js/summary-helper.js") }}"></script>
{% endblock %}