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'm currently figuring out why I still get the error from #195 with the latest version in my implementation. Beside that I noticed some critical data handling in the computed properties of basic-dialog.js:
The marked line gets the containerClassNames data and executes join() without type testing. This is meant to crash, since the default is already null, the computed is listening to other properties as well and invalid data could also be given from outside. Note, that there are multiple places in this file, where the same issue occurs.
The text was updated successfully, but these errors were encountered:
I think the #195 related error was also triggered by one/some of the computed values of basic-dialog.js in this case. I initially had defined custom classes for wrapperClass, overlayClass and containerClassNames. Which caused crashing in IE11. I now added an array value for wrapperClassNames and overlayClassNames and the modal is now also working in IE11. I guess, that the computed values now at least have valid data to work with (but did not further investigate it).
I'm currently figuring out why I still get the error from #195 with the latest version in my implementation. Beside that I noticed some critical data handling in the computed properties of
basic-dialog.js
:ember-modal-dialog/addon/components/basic-dialog.js
Line 24 in c6c783c
The marked line gets the
containerClassNames
data and executesjoin()
without type testing. This is meant to crash, since the default is alreadynull
, the computed is listening to other properties as well and invalid data could also be given from outside. Note, that there are multiple places in this file, where the same issue occurs.The text was updated successfully, but these errors were encountered: