diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/controllers/ajax_content_controller.js b/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/controllers/ajax_content_controller.js
deleted file mode 100644
index c3137608..00000000
--- a/public/typo3conf/ext/ep_theme/Resources/Private/Assets/js/controllers/ajax_content_controller.js
+++ /dev/null
@@ -1,73 +0,0 @@
-import { Controller } from '@hotwired/stimulus'
-import { useDebounce } from 'stimulus-use'
-import { useFetch} from '../mixins/use_fetch'
-
-export default class extends Controller {
-
- static debounces = [ 'load' ]
-
- static values = {
- uri: String,
- loading: Boolean,
- loaded: Boolean,
- }
-
- static targets = [ 'container', 'trigger' ]
-
- initialize() {
- useDebounce(this)
- useFetch(this)
- }
-
- connect() {
- window.addEventListener('scroll', () => {
- this.load()
- }, { passive: true })
- }
-
- disconnect() {
- window.removeEventListener('scroll', () => {
- this.load()
- })
- }
-
- load() {
- if (true === this.loadedValue) {
- return
- }
- if (false === this.inViewport()) {
- return
- }
- this.loadHtml()
- }
-
- loadHtml() {
- this.loadingValue = true
- fetch(this.uriValue)
- .then(this.checkStatus)
- .then(this.parseHTML)
- .then(html => {
- this.loadedValue = true
- this.containerTarget.innerHTML = html
- this.triggerTarget.remove()
- htmx.process(this.containerTarget)
- })
- .catch(() => {
- this.loadedValue = false
- })
- .finally(() => {
- this.loadingValue = false
- })
- }
-
- inViewport() {
- const rect = this.triggerTarget.getBoundingClientRect()
- return (
- rect.top >= 0 &&
- rect.left >= 0 &&
- rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
- rect.right <= (window.innerWidth || document.documentElement.clientWidth)
- )
- }
-
-}
diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/DetailEvent.html b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/DetailEvent.html
index 37c3b9af..1a0b51ce 100644
--- a/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/DetailEvent.html
+++ b/public/typo3conf/ext/ep_theme/Resources/Private/Templates/Hotel/DetailEvent.html
@@ -20,12 +20,9 @@
Buchungsoptionen