IE11 windows opened by Action.OpenUrl from an Adaptive Card is not resizable or scrollable
See original GitHub issueScreenshots
Version
4.9.1+ - downloaded from CDN, hosted locally
We are using webchat-es5.js with HealthBot.
When using IE11 (11.1685.16299.0), when choosing Action.OpenUrl
from an Adaptive Card the opened window is fixed size with no scrollbars.
Not sure if the fix [#3223] is the cause, but this issue occurs first in 4.9.1
Steps to reproduce
- Open any HealthBot scenario with an
Action.OpenUrl
Adaptive Card - Click the link
- See the window opened with a fixed size and no scrollbars
Expected behavior
window that opens as a result of Action.OpenUrl
is scrollable and resizable
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Adaptive Card - Action.OpenUrl not working on web browser
I have developed the entire layout but the action event for opening URL( Action.OpenUrl ) is not working. Other actions such as Action....
Read more >Action.OpenUrl - Schema Explorer | Adaptive Cards
Describes what to do when an unknown element is encountered or the requires of this or any children can't be met. 1.2. tooltip,...
Read more >Re: Action.OpenUrl is not clickable for some URLs in Microsoft ...
I've developed bot using Microsoft bot framework, the bot response is adaptive card and i want to use the action.openurl button to open...
Read more >Alma 2019 Release Notes - Ex Libris Knowledge Center
When the Cost Usage subject area is deprecated, all reports that use this subject area will no longer work. Institutions that use reports...
Read more >sitemap_forumtopic_8.xml - Construct 3
... www.construct.net/en/forum/construct-2/how-do-i-18/scrolling-issue-61945 ... .net/en/forum/construct-2/closed-bugs-22/effects-dialog-not-opening-62106 ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
After doing some research, I think the best solution is to isolate a separate behavior for IE11, which would be to assign
noreferrer
, but notnoopener
, then manually setwindow.open
to null, which resolves original issue when tested.I’m able to reproduce this outside of Web Chat on IE11, using
noopener
with the following:window.open('https://github.com/Microsoft/BotFramework-WebChat', '_blank', 'noopener')
Ideas/options:
Currently, I am investigating other options to ensure we choose the securest option. I will report back.
@gudatcomputers thanks, for now I don’t need anything from the Health Bot. 😃