diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-08-22 07:59:51 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-08-22 07:59:51 +0200 |
| commit | bbf49aa0c9a421d0c768ea6819d13e05dc557efd (patch) | |
| tree | b1586994e58c6e67384de2d5fa4301f3a1f9d7dc /resources/assets/javascripts/bootstrap/application.js | |
| parent | 5a5a510abbf1777ff3fd161e749577acb0317bfc (diff) | |
use correct selector when removing css rules, fixes #5847
Closes #5847
Merge request studip/studip!4454
Diffstat (limited to 'resources/assets/javascripts/bootstrap/application.js')
| -rw-r--r-- | resources/assets/javascripts/bootstrap/application.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/assets/javascripts/bootstrap/application.js b/resources/assets/javascripts/bootstrap/application.js index c32b751..fc5cd68 100644 --- a/resources/assets/javascripts/bootstrap/application.js +++ b/resources/assets/javascripts/bootstrap/application.js @@ -367,7 +367,7 @@ jQuery(document).on('click', 'a[data-behaviour~="ajax-toggle"]', function (event const top = topBarHeight + contentBarHeight; if (lastTop !== top) { - STUDIP.CSS.removeRule('.ck .ck-sticky-panel .ck-sticky-panel__content_sticky'); + STUDIP.CSS.removeRule('.ck-sticky-panel .ck-sticky-panel__content_sticky'); STUDIP.CSS.addRule( '.ck-sticky-panel .ck-sticky-panel__content_sticky', |
