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.
* @animations
* enter - happens just after the `ngIf` contents change and a new DOM element is created and injected into the `ngIf` container
* leave - happens just before the `ngIf` contents are removed from the DOM
However, enter and leave are rendered all strung together (ignoring new lines):
enter - happens just after the ngIf contents change and a new DOM element is created and injected into the ngIf container leave - happens just before the ngIf contents are removed from the DOM
Instead I'd expect enter and leave events to be shown on two separate lines:
enter - happens just after the ngIf contents change and a new DOM element is created and injected into the ngIf container
leave - happens just before the ngIf contents are removed from the DOM
or better yet, use back ticks around the event names (enter and leave) for clarity:
enter - happens just after the ngIf contents change and a new DOM element is created and injected into the ngIf container leave - happens just before the ngIf contents are removed from the DOM
The text was updated successfully, but these errors were encountered:
addClass: .ng-hide - happens after the ngShow expression evaluates to a truthy value and the just before contents are set to visible removeClass: .ng-hide - happens after the ngShow expression evaluates to a non truthy value and just before the contents are set to hidden
rather than:
addClass: .ng-hide - happens after the ngShow expression evaluates to a truthy value and the just before contents are set to visible
removeClass: .ng-hide - happens after the ngShow expression evaluates to a non truthy value and just before the contents are set to hidden
See https://docs.angularjs.org/api/ng/directive/ngIf#animations
The source contains the following text:
However,
enter
andleave
are rendered all strung together (ignoring new lines):Instead I'd expect
enter
andleave
events to be shown on two separate lines:or better yet, use back ticks around the event names (
enter
andleave
) for clarity:The text was updated successfully, but these errors were encountered: