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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Expected behavior: precedence order of attributes, inline style, then css
//source.js line 1325 for (let i = 0; i < 3; i++) { switch (i) { case 0: if (key !== 'transform') { // the CSS transform behaves strangely value = this.css[keyInfo.css || key]; } break; case 1: value = this.style[key]; break; case 2: value = this.attr(key); break; }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected behavior:
precedence order of attributes, inline style, then css
The text was updated successfully, but these errors were encountered: