Files
shiny/man/maskReactiveContext.Rd
Joe Cheng dde266768c Restore HTML generating functions
These functions were temporarily ripped out of Shiny and moved
to the htmltools package. We've discovered that it's safe to
keep including them in shiny; as long as the functions in shiny
and the functions in htmltools are identical, the user won't
receive a conflict warning.
2014-05-31 08:06:03 -07:00

24 lines
584 B
R

% Generated by roxygen2 (4.0.1): do not edit by hand
\name{maskReactiveContext}
\alias{maskReactiveContext}
\title{Evaluate an expression without a reactive context}
\usage{
maskReactiveContext(expr)
}
\arguments{
\item{expr}{An expression to evaluate.}
}
\value{
The value of \code{expr}.
}
\description{
Temporarily blocks the current reactive context and evaluates the given
expression. Any attempt to directly access reactive values or expressions in
\code{expr} will give the same results as doing it at the top-level (by
default, an error).
}
\seealso{
\code{\link{isolate}}
}