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
{{ message }}
This repository has been archived by the owner on May 29, 2019. It is now read-only.
On line 1469 of ui-bootstrap-pls.js the variable backdropDomEl is undefined if backdrop is set to false at config time:
var modalInstance = $modal.open({ backdrop: false })
This is not being checked for in the IF statement on the line before. So when modalInstance.close() is called you get: TypeError: Cannot call method 'remove' of undefined
Using 0.6.0 and 1.2.0.rc2
On line 1469 of ui-bootstrap-pls.js the variable backdropDomEl is undefined if backdrop is set to false at config time:
var modalInstance = $modal.open({ backdrop: false })
This is not being checked for in the IF statement on the line before. So when modalInstance.close() is called you get: TypeError: Cannot call method 'remove' of undefined
My solution is check for undefined:
The text was updated successfully, but these errors were encountered: