I'm have problem with working angular js
in ie 11
TypeError: Assignment to read-only properties is not allowed in strict mode at link (
ves-min.js:490:7
) atAnonymous function
(angular.js:7079:34)enter code here
atnodeLinkFn (angular.js:6677:13)
atcompositeLinkFn (angular.js:6071:13
) atpublicLinkFn (angular.js:5967:30)
at link(angular-route.js:919:7)
atboundTranscludeFn (angular.js:6091:9)
Please help me some solution, thanks.
It could be the following problem:
AngularJS controllers and "use strict"
Maybe it's just that IE 11 respects strict mode, which means if you do something like:
The
webAddressController
function is not in global scope for Angular to pick (the point of using the self executing syntax is to avoid adding things to global scope).So, you might want to try something like: