Murat Tasan

Results 42 comments of Murat Tasan

Pretty sure I figured this out. The [`a::before`](https://github.com/daattali/shinydisconnect/blob/master/R/disconnectMessage.R#L147) `refresh` content isn't shown because when reconnecting (as opposed to _reloading_), the `#ss-connect-dialog` element doesn't contain any `a` tag. So the content...

Without the jQuery has() trick, replacing `#ss-connect-dialog a {...}` with: ```css #ss-reload-link::before { content: 'Click here to reload.'; font-size: 22px; } #ss-reconnect-link::before { content: 'Attempting to reconnect...'; font-size: 22px; pointer-events:...