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 437ba49 commit 7f11af6Copy full SHA for 7f11af6
docs/content/error/$compile/iscp.ngdoc
@@ -12,9 +12,11 @@ myModule.directive('directiveName', function factory() {
12
scope: {
13
'attrName': '@', // OK
14
'attrName2': '=localName', // OK
15
- 'attrName3': 'name', // ERROR: missing mode @&=
16
- 'attrName4': ' = name', // ERROR: extra spaces
17
- 'attrName5': 'name=', // ERROR: must be prefixed with @&=
+ 'attrName3': '&?localName', // OK
+ 'attrName4': ' = name', // OK
+ 'attrName5': 'name', // ERROR: missing mode @&=
18
+ 'attrName6': 'name=', // ERROR: must be prefixed with @&=
19
+ 'attrName7': '=name?', // ERROR: ? must come directly after the mode
20
}
21
...
22
0 commit comments