Changeset 316572
- Timestamp:
- 03/05/2026 10:19:54 PM (3 weeks ago)
- Location:
- extendable/2.1.3
- Files:
-
- 4 edited
- 1 copied
-
. (copied) (copied from extendable/2.1.2)
-
assets/css/animations.css (modified) (1 diff)
-
assets/js/animations-interactivity.js (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
extendable/2.1.3/assets/css/animations.css
r315179 r316572 38 38 } 39 39 40 .ext-animate .ext-animation-complete{40 .ext-animate[data-ext-animated] { 41 41 opacity: 1 !important; 42 42 transform: none !important; -
extendable/2.1.3/assets/js/animations-interactivity.js
r315534 r316572 92 92 // Clear stacking context after animation completes 93 93 element.addEventListener('animationend', () => { 94 element. classList.add('ext-animation-complete');94 element.dataset.extAnimated = 'true'; 95 95 }, { once: true }); 96 96 … … 124 124 'ext-animated-fade-left', 125 125 'ext-animated-fade-right', 126 'ext-animated-zoom-in', 127 'ext-animation-complete' 126 'ext-animated-zoom-in' 128 127 ); 128 delete element.dataset.extAnimated; 129 129 }); 130 130 … … 182 182 'ext-animated-fade-left', 183 183 'ext-animated-fade-right', 184 'ext-animated-zoom-in', 185 'ext-animation-complete' 184 'ext-animated-zoom-in' 186 185 ); 186 delete element.dataset.extAnimated; 187 187 element.style.opacity = ''; 188 188 element.style.transform = ''; -
extendable/2.1.3/readme.txt
r315534 r316572 4 4 Tested up to: 6.8 5 5 Requires PHP: 7.4 6 Stable tag: 2.1. 26 Stable tag: 2.1.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 14 14 == Changelog == 15 16 = 2.1.3 - 2026-03-6 = 17 - Fixed: Accordion block disappearing after animation 15 18 16 19 = 2.1.2 - 2026-02-27 = -
extendable/2.1.3/style.css
r315534 r316572 8 8 Tested up to: 6.9 9 9 Requires PHP: 7.4 10 Version: 2.1. 210 Version: 2.1.3 11 11 License: GNU General Public License v2 or later 12 12 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.