Winston Chang

Results 285 comments of Winston Chang

I've been able to reproduce it on my Mac. I believe that Chrome is closing the WebSocket on sleep.

If you open a new browser window, open the JS console, run this code, then put your computer to sleep, it shows that the browser closes the websocket connection when...

A bit more info: This version of the code prints out the `event` object when the connection is closed. ```R var ws = new WebSocket("ws://echo.websocket.org"); ws.onopen = function(event) { console.log(new...

Sorry, I don't currently have a fix or workaround yet.

I've also seen this behavior on rstudio.cloud, which uses an ALB which is configured for a 5 minute timeout. If a user starts an app there and lets it sit...

Here's what I can find about this issue: https://security.snyk.io/vuln/SNYK-JS-DATATABLESNET-598806 I believe that it's only a problem if it's running DataTables in a NodeJS server environment (which we are not doing)....

Just a little context: If someone has a pre-rendered html file generated from a .Rmd, and then they upgrade packages that have changes html dependencies, they'll see cryptic errors like...

It would be more consistent to implement this with something similar to the existing menus (message, notification, task). Instead of allowing users to pass in any content, it should be...

The interface for `boxItem` is very different from other menus in shinydashboard, and it should be made more consistent. For example, there's a `dropdownMenu` to create the menu item, and...

I think this sort of thing should be implemented as an option to `sidebarMenu`. It's a different HTML structure, but it makes more conceptual sense for users. That's also how...