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 just found a small CSS typo that crashes halogen on iOS Safari. See the code below:
/** * @type {Object} */ var keyframesEven = { '0%': { transform: 'scale(1.1)' }, '25': { // <----------------------- Percent sign missing (causes DOM exception) transform: 'translateY(-' + riseAmount + 'px)' }, '50%': { transform: 'scale(0.4)' }, '75%': { transform: 'translateY(' + riseAmount + 'px)' }, '100%': { transform: 'translateY(0) scale(1.0)' } }; /** * @type {Object} */ var keyframesOdd = { '0%': { transform: 'scale(0.4)' }, '25': { // <----------------------- Percent sign missing (causes DOM exception) transform: 'translateY(' + riseAmount + 'px)' }, '50%': { transform: 'scale(1.1)' }, '75%': { transform: 'translateY(-' + riseAmount + 'px)' }, '100%': { transform: 'translateY(0) scale(0.75)' } };
Once I add the percent signs, the error is fixed.
Regards
The text was updated successfully, but these errors were encountered:
hi. just FYI, it's fixed in halogenium, the maintained halogen fork. also #24 fixed too. rendering in chrome/opera/firefox fixed too.
Sorry, something went wrong.
No branches or pull requests
Hi,
I just found a small CSS typo that crashes halogen on iOS Safari.
See the code below:
Once I add the percent signs, the error is fixed.
Regards
The text was updated successfully, but these errors were encountered: