From 2db71d0323bfad3e80f097b3483086fe8dc0bd9a Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Thu, 21 Jul 2016 14:32:17 -0500 Subject: [PATCH] Re-document --- NAMESPACE | 1 + man/configureBookmarking.Rd | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 man/configureBookmarking.Rd diff --git a/NAMESPACE b/NAMESPACE index a942fee2f..99ec7a8a8 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -56,6 +56,7 @@ export(code) export(column) export(conditionStackTrace) export(conditionalPanel) +export(configureBookmarking) export(createWebDependency) export(dataTableOutput) export(dateInput) diff --git a/man/configureBookmarking.Rd b/man/configureBookmarking.Rd new file mode 100644 index 000000000..0f2001644 --- /dev/null +++ b/man/configureBookmarking.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/bookmark-state.R +\name{configureBookmarking} +\alias{configureBookmarking} +\title{Configure bookmarking for a Shiny application} +\usage{ +configureBookmarking(store = c("url", "server", "disable"), exclude = NULL) +} +\arguments{ +\item{store}{Either \code{"url"}, which encodes all of the relevant values in +a URL, \code{"server"}, which saves to disk on the server, or +\code{"disable"}, which disables any previously-enabled bookmarking.} + +\item{exclude}{A character vector of names of input values to exclude from +bookmarking.} +} +\description{ +Configure bookmarking for a Shiny application +} +