You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a tag having a non-empty style attribute the style attribute will be empty after transition.
Right now addTransitionClass() and addTransitionClass() behave like this:
before: <div style="color:blue; font-weight:bold;">...</div>
transition
after: <div style="">...</div>
If you have a tag having a non-empty style attribute the style attribute will be empty after transition.
Right now addTransitionClass() and addTransitionClass() behave like this:
before: <div style="color:blue; font-weight:bold;">...</div>
transition
after: <div style="">...</div>
Expected behaviour:
before: <div style="color:blue; font-weight:bold;">...</div>
transition
after: <div style="color:blue; font-weight:bold;">...</div>
For me the following patch did it (includes test case as well):
Regards, Jan
The text was updated successfully, but these errors were encountered: