docs(minErr): improve $parse/isecfn

This commit is contained in:
Igor Minar 2013-08-07 09:32:23 -07:00
parent e21f252aa7
commit e38bf59aab

View file

@ -3,9 +3,8 @@
@fullName Referencing Function Disallowed
@description
Occurs when an expression attempts to access the 'Function' object.
Occurs when an expression attempts to access the 'Function' object (constructor for all functions in JavaScript).
AngularJS bans access to Function from within expressions since constructor
access is a known way to execute arbitrary Javascript code.
Angular bans access to Function from within expressions since constructor access is a known way to execute arbitrary Javascript code.
To resolve this error, avoid Function access.