Skip to content
Snippets Groups Projects
Commit a2e779e4 authored by M. G. Castrellon's avatar M. G. Castrellon
Browse files

Getting rid of unused and unnecessary code

parent a91427f9
No related branches found
No related tags found
No related merge requests found
......@@ -44,25 +44,6 @@ ui <- bootstrapPage(
## HTML Tags
tags$style(type = "text/css", "html, body {width:100%;height:100%}"),
tags$style(HTML("
@media screen and (max-width: 600px) {
#graph {
width: 100%;
height: 300px; /* Adjust height as needed */
}
/* Add additional styles for smaller screens */
}
@media screen and (min-width: 601px) {
#graph {
width: 100%;
height: 500px; /* Adjust height as needed */
}
/* Add additional styles for larger screens */
}
")),
## Leaflet Map
### This is supposed to cover 100% of the page
......@@ -89,22 +70,6 @@ ui <- bootstrapPage(
# yes = tags$i(class = "fa fa-circle", style = "color: steelblue"),
# no = tags$i(class = "fa fa-circle-o", style = "color: steelblue"))),
# ### Date Slider ####
# sliderInput(
# inputId = "date_range",
# label = h4("Select a date"),
# min = as.Date("2016-04-01","%Y-%m-%d"),
# max = as.Date("2023-03-31","%Y-%m-%d"),
# value = c(as.Date("2020-01-01", "%Y-%m-%d"),
# as.Date("2020-04-30", "%Y-%m-%d")),
# timeFormat = "%Y-%m-%d"),
#### Point Picker ####
# selectInput(
# inputId = "point_id",
# label = h4("Select a location"),
# choices = NULL, selected = NULL),
#### Date Range Picker ####
dateRangeInput(
inputId = "date_range",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment