I'm having an issue in my Angular 5 app:
I have the trigger for an angular-animation placed in a ul tag, which is meant to change its height from 0 to *, and it does work well in all devices eccept for devices running iOS 7.
When testing those, and triggering the animation, I get:
"Attempting to configure ‘style’ with descriptor ‘{“enumerable”:true,“configurable”:true}’ on object ‘[object HTMLUListElement]’ and got error, giving up: TypeError: Attempting to configurable attribute of unconfigurable property."
logged in the console, and an error at polyfills.bundle.js:10096:
"TypeError: ‘undefined’ is not a function (evaluating ‘b.style._set(a.propertyName(c),d)’)".
This causes my app to crash. Does anyone have any clue at all?
Thanks, Matteo