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

fix(ngClass): handle index change correctly #7262

Closed
wants to merge 1 commit into from
Closed

fix(ngClass): handle index change correctly #7262

wants to merge 1 commit into from

Conversation

shahata
Copy link
Contributor

@shahata shahata commented Apr 26, 2014

changed the odd/even calculation to be done using modulo operation instead of bitwise operation. the bitwise operation caused issues with operator precedance (mod !== old$index & 1 is actually parsed as (mod !== old$index) & 1 and not mod !== (old$index & 1) as might be expected). decided it is better to just use modulo operation for readibility instead of adding parentheses.

fixes #7256

@mary-poppins
Copy link

Thanks for the PR! Please check the items below to help us merge this faster. See the contributing docs for more information.

  • Uses the issue template (#7262)

If you need to make changes to your pull request, you can update the commit with git commit --amend.
Then, update the pull request with git push -f.

Thanks again for your help!

@shahata
Copy link
Contributor Author

shahata commented Apr 26, 2014

I see that the bitwise operation was added for performance in cb62a57 - if you prefer I can change this to use parentheses instead of the modulo. In my opinion readability is more important here. :)

@shahata shahata added cla: yes and removed cla: no labels Apr 28, 2014
@shahata shahata mentioned this pull request May 16, 2014
changed the odd/even calculation to be done using modulo operation instead of bitwise operation. the bitwise operation caused issues with operator precedence (`mod !== old$index & 1` is actually parsed as `(mod !== old$index) & 1` and not `mod !== (old$index & 1)` as might be expected). decided it is better to just use modulo operation for readability instead of adding parentheses.

fixes #7256
@btford btford added this to the 1.3.0-beta.9 milestone May 16, 2014
@btford btford self-assigned this May 16, 2014
@btford
Copy link
Contributor

btford commented May 16, 2014

Landed as 5fbd618. Thanks!

@btford btford closed this May 16, 2014
@btford
Copy link
Contributor

btford commented May 16, 2014

btw, I amended your commit to keep the bitwise operation and just add the parenthesis to fix the precedence ordering.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ng-class-odd/even don't always remove classes when new entry prepended
3 participants