Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Confusing formatting of animation events #10742

Closed
fredsa opened this issue Jan 14, 2015 · 2 comments
Closed

Confusing formatting of animation events #10742

fredsa opened this issue Jan 14, 2015 · 2 comments

Comments

@fredsa
Copy link
Contributor

fredsa commented Jan 14, 2015

See https://docs.angularjs.org/api/ng/directive/ngIf#animations

The source contains the following text:

 * @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

@Narretz Narretz added this to the Backlog milestone Jan 14, 2015
@fredsa
Copy link
Contributor Author

fredsa commented Jan 14, 2015

Note that the issue isn't just with ngIf, but also any of the other animation events
e.g. ngShow (https://docs.angularjs.org/api/ng/directive/ngShow#animations) has:

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

@matsko matsko self-assigned this Jan 15, 2015
@Narretz
Copy link
Contributor

Narretz commented Jun 16, 2015

I think this needs to be fixed in the dgeni template for directives.

@Narretz Narretz assigned Narretz and unassigned matsko Jun 16, 2015
Narretz added a commit to Narretz/angular.js that referenced this issue Jan 28, 2016
Narretz added a commit to Narretz/angular.js that referenced this issue Jan 28, 2016
@Narretz Narretz closed this as completed in 7de7059 Feb 8, 2016
Narretz added a commit that referenced this issue Feb 8, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants