-
Notifications
You must be signed in to change notification settings - Fork 3
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
full diff <head> #69
Comments
https://github.com/Zorium/zorium/blob/master/src/render.coffee#L76 allowing the link tag causes iOS UIWebview (eg Chrome) to refetch fonts with every render |
@austinhallock it shouldn't be re-setting old values? https://github.com/Zorium/zorium/blob/master/src/render.coffee#L92 |
because the DOM does weird stuff with values (e.g. style object is DOM custom style object), should store changed (and compared) values on custom node prop (e.g. _zorium_props) |
fyi your fix didn't fix it on iOS. Made it worse. Previously adding https:// instead of // fixed the font reloading thing, but now it always does it (even with the https://) on UIWebview. It's comparing |
@austinhallock fixed |
diffing the element is tricky because you don't want to re-fetch dependencies, but you still want to allow for dynamic and tags (see clay.io).
The text was updated successfully, but these errors were encountered: