Skip to content

Commit

Permalink
Merge branch 'release/1.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Fischer committed Jun 10, 2024
2 parents 77b59f3 + 03b6522 commit 23d29d3
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Documentation/guides.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
interlink-shortcode="evoweb/sf-books"
/>
<project title="ew_collapsible_container"
release="1.4.1"
version="1.4.1"
release="1.4.2"
version="1.4.2"
copyright="since 2024 by evoWeb"
/>
<inventory id="t3tsref" url="https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/"/>
Expand Down
16 changes: 12 additions & 4 deletions Resources/Public/JavaScript/ContainerPre12.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,18 @@ class ContainerToggle {

constructor(PersistentStorage) {
this.persistentStorage = PersistentStorage;
document.addEventListener('DOMContentLoaded', () => {
this.initializeContainerToggle();
this.initializeExpandColumn();
});
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => {
this.initialized();
});
} else {
this.initialized();
}
}

initialized() {
this.initializeContainerToggle();
this.initializeExpandColumn();
}

/**
Expand Down
16 changes: 12 additions & 4 deletions Resources/Public/JavaScript/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,18 @@ class ContainerToggle {

constructor(PersistentStorage) {
this.persistentStorage = PersistentStorage;
document.addEventListener('DOMContentLoaded', () => {
this.initializeContainerToggle();
this.initializeExpandColumn();
});
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => {
this.initialized();
});
} else {
this.initialized();
}
}

initialized() {
this.initializeContainerToggle();
this.initializeExpandColumn();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'author_email' => '[email protected]',
'author_company' => 'evoWeb',
'state' => 'stable',
'version' => '1.4.1',
'version' => '1.4.2',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-13.4.99',
Expand Down

0 comments on commit 23d29d3

Please sign in to comment.