From 1981213fa5d24e7bc3e0dac2a594d02e7223bc64 Mon Sep 17 00:00:00 2001 From: Schultheis Date: Fri, 9 Mar 2018 09:53:07 +0100 Subject: [PATCH] and_example: removed deprecated parameter; added missing source --- exec/and_example.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exec/and_example.R b/exec/and_example.R index 6b9e494..146add7 100644 --- a/exec/and_example.R +++ b/exec/and_example.R @@ -3,6 +3,7 @@ source("../R/and.R") source("../R/orNumeric.R") source("../R/orTextual.R") source("../R/function.R") +source("../R/global.R") ###Test Data table <- data.table::data.table(w = c(1, 2, 3, 4, 5, 6, 7, 8, 9, 11), @@ -34,7 +35,7 @@ server <- function(input, output, session) { table }) - mod <-callModule(and, "id", data = data, show.elements = reactive(input$column), delimiter = delimiter, multiple = multiple, contains = contains, ranged = ranged, step = step, selection.default = "all", reset = reactive(input$reset)) + mod <-callModule(and, "id", data = data, show.elements = reactive(input$column), delimiter = delimiter, multiple = multiple, contains = contains, ranged = ranged, step = step, reset = reactive(input$reset)) output$id.out <- renderPrint({ print(mod())