mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 10:45:06 -05:00
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.
24 lines
584 B
R
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}}
|
|
}
|
|
|