docs(structural-directives): typos and clean-up (#3031)
This commit is contained in:
parent
6d431f11ce
commit
2f28b321ee
@ -5,7 +5,7 @@ block includes
|
|||||||
One of the defining features of a single page application is its manipulation
|
One of the defining features of a single page application is its manipulation
|
||||||
of the DOM tree. Instead of serving a whole new page every time a user
|
of the DOM tree. Instead of serving a whole new page every time a user
|
||||||
navigates, whole sections of the DOM appear and disappear according
|
navigates, whole sections of the DOM appear and disappear according
|
||||||
to the application state. In this chapter we'll to look at how Angular
|
to the application state. In this chapter we'll look at how Angular
|
||||||
manipulates the DOM and how we can do it ourselves in our own directives.
|
manipulates the DOM and how we can do it ourselves in our own directives.
|
||||||
|
|
||||||
In this chapter we will
|
In this chapter we will
|
||||||
@ -48,7 +48,7 @@ block includes
|
|||||||
:marked
|
:marked
|
||||||
## NgIf Case Study
|
## NgIf Case Study
|
||||||
|
|
||||||
Let’s focus on `ngIf`. It's a great example of a structural
|
Let's focus on `ngIf`. It's a great example of a structural
|
||||||
directive: it takes a boolean and makes an entire chunk of DOM appear
|
directive: it takes a boolean and makes an entire chunk of DOM appear
|
||||||
or disappear.
|
or disappear.
|
||||||
|
|
||||||
@ -72,9 +72,9 @@ figure.image-display
|
|||||||
the component's behavior continues.
|
the component's behavior continues.
|
||||||
It remains attached to its DOM element. It continues to listen to events.
|
It remains attached to its DOM element. It continues to listen to events.
|
||||||
Angular keeps checking for changes that could affect data bindings.
|
Angular keeps checking for changes that could affect data bindings.
|
||||||
Whatever the component was doing it keeps doing.
|
Whatever the component was doing, it keeps doing it.
|
||||||
|
|
||||||
Although invisible, the component — and all of its descendent components —
|
Although invisible, the component — and all of its descendant components —
|
||||||
tie up resources that might be more useful elsewhere.
|
tie up resources that might be more useful elsewhere.
|
||||||
The performance and memory burden can be substantial and the user may not benefit at all.
|
The performance and memory burden can be substantial and the user may not benefit at all.
|
||||||
|
|
||||||
@ -143,7 +143,7 @@ figure.image-display
|
|||||||
a heavy price to create and destroy it.
|
a heavy price to create and destroy it.
|
||||||
|
|
||||||
If we really expected to "wink" the component like this, toggling visibility would be the better choice.
|
If we really expected to "wink" the component like this, toggling visibility would be the better choice.
|
||||||
In most UIs, when we "close" a component we're unlikely see it again for a long time, if ever.
|
In most UIs, when we "close" a component we're unlikely to see it again for a long time, if ever.
|
||||||
The `ngIf` would be preferred in that case.
|
The `ngIf` would be preferred in that case.
|
||||||
|
|
||||||
<a id="template"></a>
|
<a id="template"></a>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user