Skip to content

Commit

Permalink
Display baseline cycling only for aggregate tabs.
Browse files Browse the repository at this point in the history
  • Loading branch information
usr110 committed Sep 20, 2016
1 parent e3625ea commit a2e85bc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,12 @@ shinyServer(function(input, output, session){
output$inBaselineCycling <- renderUI({

input$inRegions
#idata <<- subset(idata, HHoldGOR_B02ID == input$inRegions)
HTML("Baseline Cycling (%): ", sessionData$baselineSummary[["% Cyclists in the Total Population"]], "\n")
input$conditionedPanels

if (input$conditionedPanels < 8)
HTML("Baseline Cycling (%): ", sessionData$baselineSummary[["% Cyclists in the Total Population"]], "\n")
else
HTML("")
})

plotTables <- reactive({
Expand Down

0 comments on commit a2e85bc

Please sign in to comment.