-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for #2531093 #25
Fix for #2531093 #25
Conversation
…h fixes #2531093 Added a test for the issue.
@andreas-karlsson could you please sign the YUI CLA? The CLA ensures that everyone who submits a work of authorship to the YUI Library is contributing work that is their own or for which they can authoritatively speak. This protects the tens of thousands of developers who use YUI in their daily work, all of whom rely on YUI's BSD license to appropriately cover their use of the library. The CLA does not transfer title or copyright of your contributed work to Yahoo!. It merely guarantees that you approve the use of your work within YUI and by those who use the library under the terms of its license. Thanks! |
Cool, the CLA is signed. |
Hey Andreas, thanks for the pull request. There are a couple of small changes which I think are worth making: a) Refactor the method to have a single return (just a readability/maintainability thing). b) Add a check around the parentNode.appendChild(childBB). We don't want to append a child which already may be added to parentNode in it's correct position. If you want, I'm happy to make these changes locally since they are pretty small, and give you credit for it, or if you want to send in another pull request I can pull it in. |
Well, you can fix it. I'm at work and have yui forked on my home computer... Thanks. -----Original Message----- Hey Andreas, thanks for the pull request. There are a couple of small changes which I think are worth making: a) Refactor the method to have a single return (just a readability/maintainability thing). b) Add a check around the parentNode.appendChild(childBB). We don't want to append a child which already may be added to parentNode in it's correct position. If you want, I'm happy to make these changes locally since they are pretty small, and give you credit for it, or if you want to send in another pull request I can pull it in. Reply to this email directly or view it on GitHub: |
Cool. Fixed locally, with References to this pull request. |
Thanks! -----Original Message----- Cool. Fixed locally, with References to this pull request. Reply to this email directly or view it on GitHub: |
Made _uiAddChild always append the child's bb to the parent node which fixes #2531093
Added a test for the issue.