Remove shinyUI() and shinyServer() from examples

This commit is contained in:
Winston Chang
2016-04-05 15:23:23 -05:00
parent 0bdc8f0b2b
commit 5d6d75b4f3
54 changed files with 154 additions and 154 deletions

View File

@@ -478,7 +478,7 @@ installExprFunction <- function(expr, name, eval.env = parent.frame(2),
#'
#' \dontrun{
#' # Example of usage within a Shiny app
#' shinyServer(function(input, output, session) {
#' function(input, output, session) {
#'
#' output$queryText <- renderText({
#' query <- parseQueryString(session$clientData$url_search)
@@ -494,7 +494,7 @@ installExprFunction <- function(expr, name, eval.env = parent.frame(2),
#' # Return a string with key-value pairs
#' paste(names(query), query, sep = "=", collapse=", ")
#' })
#' })
#' }
#' }
#'
parseQueryString <- function(str, nested = FALSE) {