John Coene

Results 318 comments of John Coene

Sorry etienne, j'ai complètement oublié cette PR :(

Yes this is a recurring issue because it's not clearly documented. You can keep scroll from switching page/slide with an option: specify the `id` (probably `fmap` in your case) of...

Apologies, I misunderstood your question. I'm not sure how to solve this as it seems to be on tmap's side, `zoomControl = FALSE` disables the scroll completely.

We're ahead of 0.0.1, I don't think that creates issues with renv, previous tagged version != latest master branch is normal

I think you want to use the callbacks to fire the zoom on the right section or slide, see [callbacks](https://fullpage.rinterface.com/articles/callbacks.html)

There is nothing built-in to handle this but it could be added. e.g.: ```js $('.fp-prev').on('click', (e) => { Shiny.setInputValue('previous', true, {priority: 'event'}); }); $('.fp-next').on('click', (e) => { Shiny.setInputValue('next', true, {priority:...

I think I removed milligram so we can just use standard shiny. The doc must not be up to date, apologies

Sorry, only just saw this. The support for Firestore is difficult to integrate with R given how it works. I tried, it's not impossible but makes for a very ugly...

Yes indeed, it does get tedious. It could be done but it's quite a bit of work. There are two ways I can think of doing this: by hijacking the...

You should be able to obtain this with the `get_signed_in` method, it returns a named list with a `success` variable; a boolean to indicate if the sign in was successful.