Skip to content

Commit

Permalink
use dot for launch.browser delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Nov 17, 2016
1 parent 4872aab commit ace87ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/shiny.R
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ run <- function(file = "index.Rmd", dir = dirname(file), default_file = NULL,

# launch the app and open a browser to the requested page, if one was
# specified
if (!is.null(shiny_args) && !is.null(shiny_args$launch_browser))
launch_browser <- shiny_args$launch_browser
if (!is.null(shiny_args) && !is.null(shiny_args$launch.browser))
launch_browser <- shiny_args$launch.browser
else
launch_browser <- (!is.null(file)) && interactive()
if (isTRUE(launch_browser)) {
Expand Down

0 comments on commit ace87ba

Please sign in to comment.