This file contains 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
/* | |
* This is the compiled css for Bootstrap tabs and pills. | |
* Compiled from bootstrap 2.3.2 (less/navs.less) | |
*/ | |
.clearfix { | |
*zoom: 1; | |
} | |
.clearfix:before, | |
.clearfix:after { |
This file contains 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
// 22 Feb 2020 TODO: | |
// needs trailing comma fix (allow trailing comma in arrays and object literals). | |
// see JWCC at https://nigeltao.github.io/blog/2021/json-with-commas-comments.html | |
export { normalize }; | |
// var normalize = (function() { | |
// /////////////////////////////////////////////////// | |
// REVISE THIS FILE, PUT THE MAIN FUNCTION AT TOP, |
This file contains 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
shinyServer(function(input, output) { | |
datasetInput <- reactive({ | |
switch(input$dataset, | |
"rock" = rock, | |
"pressure" = pressure, | |
"cars" = cars) | |
}) | |
output$caption <- renderText({ |