Right now we call window.open(url) for card actions. The default in most browsers is to open the url in a new tab, but some might like to open it in a new window, etc.
My proposal is to add urlTarget?:string and urlTitle?:string to ChatProps. If supplied we'd pass them as the second and third parameter to window.open.
Right now we call
window.open(url)for card actions. The default in most browsers is to open the url in a new tab, but some might like to open it in a new window, etc.My proposal is to add
urlTarget?:stringandurlTitle?:stringtoChatProps. If supplied we'd pass them as the second and third parameter towindow.open.