-
Notifications
You must be signed in to change notification settings - Fork 563
listen to iframe resizing and send request #1166
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
Conversation
| abstract setPosition(position: { line: number, column: number }): void; | ||
| abstract updateOptions(options: any): void; | ||
| abstract focus(): void; | ||
| abstract layout(size?: { width: number, height: number }): void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this to be optional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should not be optional
|
|
||
| private _options = {}; | ||
| private _code: string; | ||
| private _size?: { width: number; height: number; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this need to be optional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is only internal state of test object, can be udnefined
|
|
||
| private _markers: editorAdapter.IMarkerData[]; | ||
|
|
||
| layout(size?: { width: number; height: number; } | undefined): void { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should not be
address inconsistency in api signature again ..
21e4941 to
ceebb53
Compare
add fix for resizing