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
I had problems closing the Modal in my application.
Therefore I think the default fade animations may break under some circumstances as it happend to me. I patched it with a simple visibility check.
The problem was that it stopped at beforeHideLoad... Then I tinkered a bit and found out, that fadeOut didn't called the complete function if it was already hidden (dunno why it is this way in my application - using jQuery v1.10.2). The loader icon will be hidden after adding the content and though if I then tried closing the modal it broke as the complete function wasn't called.
It seems not to solve all problems... I will now investigate further what my additional libraries do to this animations.... As I now got the problem with modal-chaining (a link in a modal, changing content inside modal etc.), because the show animations have the same problem but if I add those checks there it will break them... If I catch the faulty lib I will post it here so anyone knows the incompatibility...
I had problems closing the Modal in my application.
Therefore I think the default fade animations may break under some circumstances as it happend to me. I patched it with a simple visibility check.
The problem was that it stopped at beforeHideLoad... Then I tinkered a bit and found out, that fadeOut didn't called the complete function if it was already hidden (dunno why it is this way in my application - using jQuery v1.10.2). The loader icon will be hidden after adding the content and though if I then tried closing the modal it broke as the complete function wasn't called.
My patch:
I think it may be not always necessary but why don't check just for the sake of not having those problems under some/special circumstances.
The text was updated successfully, but these errors were encountered: