File tree 1 file changed +6
-4
lines changed 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 7
7
A07F
* @priority 1000
8
8
*
9
9
* @description
10
- * Sometimes it is necessary to write code which looks like bindings but which should be left alone
11
- * by angular. Use `ngNonBindable` to make angular ignore a chunk of HTML.
10
+ * The `ngNonBindable` directive tells Angular not to compile or bind the contents of the current
11
+ * DOM element. This is useful if the element contains what appears to be Angular directives and
12
+ * bindings but which should be ignored by Angular. This could be the case if you have a site that
13
+ * displays snippets of code. for instance.
12
14
*
13
15
* @element ANY
14
16
*
15
17
* @example
16
- * In this example there are two location where a simple binding (`{{}}`) is present, but the one
17
- * wrapped in `ngNonBindable` is left alone.
18
+ * In this example there are two locations where a simple interpolation binding (`{{}}`) is present,
19
+ * but the one wrapped in `ngNonBindable` is left alone.
18
20
*
19
21
* @example
20
22
<doc:example>
You can’t perform that action at this time.
0 commit comments