Created
August 9, 2017 15:04
-
-
Save slopp/41705b3100eff7f73b9ed62a7386b266 to your computer and use it in GitHub Desktop.
Screen Height Demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(shiny) | |
ui <- fluidPage( | |
textOutput("height"), | |
tags$script(' | |
$(window).bind("resize", function () { | |
Shiny.onInputChange("height", $(document).height()); | |
});' | |
) | |
) | |
server <- function(input, output){ | |
output$height <- renderText({ | |
input$height | |
}) | |
} | |
shinyApp(ui, server) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment