Problem,
My alert box works on all the browser except IE 8. It get displayed but does not get closed on click or on timeout. Below is my Code of HTML
<div class="notification">
<div alert ng-repeat="alert in alerts" type="{{alert.type}}" close="alert.close()">{{alert.msg}}</div>
</div>
I have created Services for the alert, so i don't have to duplicate the code. Please let me know if you need my code for alert services.
Any suggestions are welcome