You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Copy file name to clipboardexpand all lines: docs/content/error/compile/ctreq.ngdoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
@fullName Missing Required Controller
4
4
@description
5
5
6
-
This error occurs when {@link api/ng.$compile template compiler} tries process the directive that specifies the `require` option in a {@link guide/directive#directivedefinitionobject directive definition},
6
+
This error occurs when {@link api/ng.$compile template compiler} tries process the directive that specifies the `require` option in a {@link guide/directive#writing-directives_directive-definition-object directive definition},
7
7
but the required directive controller is not present on the current DOM element (or its ancestor element, if `^` was specified).
8
8
9
9
To resolve this error ensure that there is no typo in the required controller name and that the required directive controller is present on the current element.
Copy file name to clipboardexpand all lines: docs/content/error/compile/nonassign.ngdoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
@fullName Non-Assignable Expression
4
4
@description
5
5
6
-
This error occurs when a directive defines an isolate scope property that support two-way data-binding (using the `=` mode in the {@link guide/directive#directivedefinitionobject directive definition}) but the directive is used with an expression that is not-assignable.
6
+
This error occurs when a directive defines an isolate scope property that support two-way data-binding (using the `=` mode in the {@link guide/directive#writing-directives_directive-definition-object directive definition}) but the directive is used with an expression that is not-assignable.
7
7
8
8
In order for the two-way data-binding to work, it must be possible to write new values back into the path defined with the expression.
Copy file name to clipboardexpand all lines: docs/content/error/sce/iequirks.ngdoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
@fullName IE8 in quirks mode is unsupported
4
4
@description
5
5
6
-
This error occurs when you are using AngularJS with {@link api/ng.$sce#strictcontextualescaping Strict Contextual Escaping (SCE)} mode enabled (the default) on IE8 or lower in quirks mode.
6
+
This error occurs when you are using AngularJS with {@link api/ng.$sce Strict Contextual Escaping (SCE)} mode enabled (the default) on IE8 or lower in quirks mode.
7
7
8
8
In this mode, IE8 allows one to execute arbitrary javascript by the use of the `expression()` syntax and is not supported.
9
9
Refer {@link http://blogs.msdn.com/b/ie/archive/2008/10/16/ending-expressions.aspx MSDN Blogs > IEBlog > Ending Expressions} to learn more about them.
Copy file name to clipboardexpand all lines: docs/content/error/sce/insecurl.ngdoc
+5-5
Original file line number
Diff line number
Diff line change
@@ -3,21 +3,21 @@
3
3
@fullName Processing of a Resource from Untrusted Source Blocked
4
4
@description
5
5
6
-
AngularJS' {@link api/ng.$sce#strictcontextualescaping Strict Contextual Escaping (SCE)} mode (enabled by default) has blocked loading a resource from an insecure URL.
6
+
AngularJS' {@link api/ng.$sce Strict Contextual Escaping (SCE)} mode (enabled by default) has blocked loading a resource from an insecure URL.
7
7
8
8
Typically, this would occur if you're attempting to load an Angular template from an untrusted source.
9
9
It's also possible that a custom directive threw this error for a similar reason.
10
10
11
-
Angular only loads templates from trusted URLs (by calling {@link api/ng.$sce#getTrustedResourceUrl $sce.getTrustedResourceUrl} on the template URL).
11
+
Angular only loads templates from trusted URLs (by calling {@link api/ng.$sce#methods_getTrustedResourceUrl $sce.getTrustedResourceUrl} on the template URL).
12
12
13
13
By default, only URLs that belong to the same origin are trusted. These are urls with the same domain and protocol as the application document.
14
14
15
15
The {@link api/ng.directive:ngInclude ngInclude} directive and {@link guide/directive directives} that specify a `templateUrl` require a trusted resource URL.
16
16
17
17
To load templates from other domains and/or protocols, either adjust the {@link
0 commit comments