I am currently utilizing ng-strap's modal, alert, and aside features. Each of them is functioning properly on their own, but when I attempt to place an alert or modal inside an aside, it throws the following error:
Uncaught TypeError: Cannot read property 'length' of undefined.
For reference, here is a plunker demonstrating the issue: http://plnkr.co/edit/vLbDAarzpbT3qk0aNw12?p=preview
I have used identical code (copied & pasted) for the modal/alert buttons both within and outside of the aside container.
<button type="button" class="btn btn-default" data-animation="am-fade-and-scale" data-placement="center" bs-modal="myModal">Modal!</button>
<button type="button" class="btn btn-default" data-placement="top" data-container="body" data-duration="3" bs-alert="errorAlert">Alert!</button>
Any suggestions on how to tackle this issue?