8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba62e97 commit f13c33bCopy full SHA for f13c33b
src/ng/parse.js
@@ -74,7 +74,7 @@ function ensureSafeFunction(obj, fullExpression) {
74
throw $parseMinErr('isecfn',
75
'Referencing Function in Angular expressions is disallowed! Expression: {0}',
76
fullExpression);
77
- } else if (obj === CALL || obj === APPLY || obj === BIND) {
+ } else if (obj === CALL || obj === APPLY || (BIND && obj === BIND)) {
78
throw $parseMinErr('isecff',
79
'Referencing call, apply or bind in Angular expressions is disallowed! Expression: {0}',
80
0 commit comments