Winston Chang
Winston Chang
Have you tried the code that I provided? The problem is that your `Sys.sleep()` blocks the entire process.
It sounds like the `document.querySelector('title')` isn't returning anything. I think the problem is that clicking on the search button causes another page load, and when you grab the `` in...
I don't know for sure, but my guess would be that there's not enough time between the two `click()` commands in the block with `p3`.
The reason this happens is because the Chromote object creates its own event loop, which is a "child" of the global event loop. With the later package, there is a...
@markwsac Can you file a new issue about the Inspector.enable problem?
Observers need to be suspended before they're gc'ed. So we would need a way to suspend them when another `bind_shiny` is called with the same name.
I just switched to a full build of jQuery UI 1.11.4, in 076e350. There's also a pending pull request on Shiny (rstudio/shiny#984) which updates it to jQuery UI 1.11.4.
That would be a nice feature, but doing so is non-trivial. The renderer requires a Javascript engine, which is either a web browser or or node.js (that's what vg2png runs...
The built-in Vega events only respond to clicks on data objects; in order to make this work, we'll need to either add transparent rect for the whole plot or attach...
Here's a workaround for now. Hopefully we'll figure out a better way to do this: ``` R mtc %>% ggvis(~cyl, ~mpg) %>% layer_boxplots(width=0.5) %>% layer_points(prop("x", ~cyl, scale = "xcenter")) ```