Skip to content

Commit

Permalink
Remove obsolete print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Kuethe committed Sep 21, 2024
1 parent 320a9d3 commit 0acec2b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
8 changes: 0 additions & 8 deletions R/input_handlers.R
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# https://book.javascript-for-r.com/shiny-complete.html
input_handler_data <- function(value, ...) {
if (debug_mode()) {
print("custom input handler data")
}

if (getOption("rtabulator.raw_data", FALSE)) {
return(value)
}
Expand All @@ -14,10 +10,6 @@ input_handler_data <- function(value, ...) {
}

input_handler_sheet_data <- function(value, ...) {
if (debug_mode()) {
print("custom input handler data")
}

if (getOption("rtabulator.raw_data", FALSE)) {
return(value)
}
Expand Down
1 change: 0 additions & 1 deletion R/tabulator_context.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ tabulatorContext <- function(output_id, session = shiny::getDefaultReactiveDomai

send_tabulator_calls <- function(ctx) {
handler_name <- glue::glue("tabulator-{id}", id = ctx$id)
print(handler_name)
payload <- list(
id = ctx$id,
calls = ctx$x$calls
Expand Down

0 comments on commit 0acec2b

Please sign in to comment.