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
Likely related to #348, since:
Example (in Coffeescript, but the syntax is similar enough to Javascript):
currentWindow = Window.focused() sf = currentWindow.screen().frame() wf = currentWindow.frame() wf.x = 0 wf.y = 0 wf.height = sf.height Phoenix.log("Before screen height: #{currentWindow.screen().frame().height}") Phoenix.log(currentWindow.setFrame(wf)) Phoenix.log("After screen height: #{currentWindow.screen().frame().height}") Phoenix.log("#{wf.height} -> #{currentWindow.frame().height}")
Logs:
default 21:35:15.212393+0900 Phoenix Before screen height: 1117 default 21:35:15.390630+0900 Phoenix false default 21:35:15.402436+0900 Phoenix After screen height: 1440 default 21:35:15.404335+0900 Phoenix 1117 -> 1092
The text was updated successfully, but these errors were encountered:
Confirmed the issue is fixed with #350.
Sorry, something went wrong.
No branches or pull requests
Likely related to #348, since:
Example (in Coffeescript, but the syntax is similar enough to Javascript):
Logs:
The text was updated successfully, but these errors were encountered: