Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
and_example: removed deprecated parameter; added missing source
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikSchultheis committed Mar 9, 2018
1 parent 3ae7cea commit 1981213
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exec/and_example.R
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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())
Expand Down

0 comments on commit 1981213

Please sign in to comment.