You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know its not the typical use case, but using code-server (vscode on a remote server) with browser preview (in iOS) would be a great for web development on iPad, but it appears to render a checkered grid instead of the page.
Looking at the css, there is a css class being applied to the rendered page: .img-hidden{ display: none }. My guess is that this class is supposed to be removed somehow when rendering is finished?
How the page is shown initially:
Turning off the display: none css attribute:
The text was updated successfully, but these errors were encountered:
This extension has never been tested outside of Electron, so that's a new use-case. The rendering pipeline is using the hidden image to convert the base64 PNG to an image, which is then rendered to the
So something must go wrong in the process of decoding the base64 to img.
auchenberg
changed the title
Browser preview doesn't work in Safari
Canvas doesn't render in Safari on iOS
Feb 20, 2021
I know its not the typical use case, but using code-server (vscode on a remote server) with browser preview (in iOS) would be a great for web development on iPad, but it appears to render a checkered grid instead of the page.
Looking at the css, there is a css class being applied to the rendered page: .img-hidden{ display: none }. My guess is that this class is supposed to be removed somehow when rendering is finished?
How the page is shown initially:
Turning off the display: none css attribute:
The text was updated successfully, but these errors were encountered: