Hi,
I have an AngularJs application with the version 1.5.7. I know that some
browser have support dropped like IE8 since angular 1.3.x. I would like to
know how people deal with non compatible browser.
I currently used the jquery plugin jreject to check if browser is
uncompatible and then display a popup to inform of that.
But the angular code try to be executed and on IE8 if have some error like
"Object doesn't support this property or method" for code
angular.module('myModule').
Instead of make a try catch to handle this error i made a test before :
if(angular !== undefined && typeof angular.module === 'function') {
angular.module('myModule')
.controller('WelcomeController', ['$scope', WelcomeController]);
}
If anyone could also share his tips to deal with those situations.
--
You received this message because you are subscribed to the Google Groups
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.