aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/bootstrap
diff options
context:
space:
mode:
authorRon Lucke <lucke@elan-ev.de>2025-07-14 09:36:18 +0200
committerRon Lucke <lucke@elan-ev.de>2025-07-14 09:36:18 +0200
commit4355ded9bc56e0b06fbceffe61ddc37061cc3bc7 (patch)
tree348493b6b0fd1286b86f213e5077413b97cf9747 /resources/assets/javascripts/bootstrap
parent1e59dd2dacc51b3313d7780b66d4bf72e0484f86 (diff)
Color-Themes-System, fixes #5361
Closes #5361 Merge request studip/studip!4038
Diffstat (limited to 'resources/assets/javascripts/bootstrap')
-rw-r--r--resources/assets/javascripts/bootstrap/inline-editing.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/resources/assets/javascripts/bootstrap/inline-editing.js b/resources/assets/javascripts/bootstrap/inline-editing.js
deleted file mode 100644
index 8f96f31..0000000
--- a/resources/assets/javascripts/bootstrap/inline-editing.js
+++ /dev/null
@@ -1,48 +0,0 @@
-jQuery(
- function () {
-
- jQuery(document).ready(
- function() {
- var elements = jQuery('[data-inline-editing]');
- for (const element of elements) {
- STUDIP.InlineEditing.init(element);
- }
- }
- );
-
- jQuery(document).on(
- 'dialog-update',
- null,
- function() {
- var elements = jQuery('.ui-dialog [data-inline-editing]');
- for (const element of elements) {
- STUDIP.InlineEditing.init(element);
- }
- }
- );
-
- jQuery(document).on(
- 'click',
- '[data-inline-editing] .edit-button',
- function (event) {
- STUDIP.InlineEditing.activate(event.target);
- }
- );
-
- jQuery(document).on(
- 'click',
- '[data-inline-editing] .save-button',
- function (event) {
- STUDIP.InlineEditing.save(event.target);
- }
- );
-
- jQuery(document).on(
- 'click',
- '[data-inline-editing] .abort-button',
- function (event) {
- STUDIP.InlineEditing.abort(event.target);
- }
- );
- }
-);