Remove unnecessary namespace

This commit is contained in:
Joe Cheng
2016-12-15 11:11:29 -08:00
parent 39169a36f5
commit 95b1a197be
2 changed files with 2 additions and 2 deletions

View File

@@ -1779,7 +1779,7 @@ isNullEvent <- function(value) {
#' }
#'
#' @export
debounce <- function(r, millis, domain = shiny::getDefaultReactiveDomain()) {
debounce <- function(r, millis, domain = getDefaultReactiveDomain()) {
# TODO: make a nice label for the observer(s)

View File

@@ -5,7 +5,7 @@
\alias{throttle}
\title{Slow down a reactive expression with debounce/throttle}
\usage{
debounce(r, millis, domain = shiny::getDefaultReactiveDomain())
debounce(r, millis, domain = getDefaultReactiveDomain())
throttle(r, millis, domain = getDefaultReactiveDomain())
}