We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
i went through your code to extract the flexboxSupport method and wondered if I missed something with line 1830
boxPackJustify : function () { var totalOffset = 0, i, j; for (i = 0, j = dummy.childNodes.length; i < j; i++) { totalOffset += dummy.childNodes[i].offsetLeft; } return (totalOffset === 135);
I just get 100 (or, in chrome, 99) as totalOffset when debugging via console.
totalOffset
Perhaps I missed the correct attributes to check justify properly so 135 would be indeed the returned value if the test is passed?
135
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
i went through your code to extract the flexboxSupport method and wondered if I missed something with line 1830
I just get 100 (or, in chrome, 99) as
totalOffset
when debugging via console.Perhaps I missed the correct attributes to check justify properly so
135
would be indeed the returned value if the test is passed?The text was updated successfully, but these errors were encountered: