We are supporting IE8 browser for our application. Recently we are upgraded angular version from 1.0.8 to 1.2.16
application with newer version works in all browsers however we seen the issue with ngRoute in IE8.
It broadcasts the "$routeChangeStart" multiple times.
$rootScope.$on("$routeChangeStart", (event: ng.IAngularEvent, next, current) => {
});
To identify i have added console.log inside above code it getting called twice in IE8 only.
In angular version 1.0.8 same code snippet gives one time console.log comments in browser console.
Is there any issue with ngRoute (angular version 1.2.16) for IE8 ??