File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ shiny 0.10.2.9xxx
34
34
`encodeURIComponent()`, and `decodeURIComponent()` from the httpuv package
35
35
instead of `utils::URLencode()` and `utils::URLdecode()`. (#630)
36
36
37
+ shiny 0.10.2.2
38
+ --------------------------------------------------------------------------------
39
+
40
+ * Remove use of `rstudio::viewer` in a code example, for R CMD check.
41
+
37
42
shiny 0.10.2.1
38
43
--------------------------------------------------------------------------------
39
44
Original file line number Diff line number Diff line change 34
34
# ' ),
35
35
# ' server = function(input, output) {
36
36
# ' output$plot <- renderPlot( plot(head(cars, input$n)) )
37
- # ' },
38
- # ' options=list(launch.browser = rstudio::viewer)
37
+ # ' }
39
38
# ' )
40
39
# '
41
40
# ' shinyAppDir(system.file("examples/01_hello", package="shiny"))
Original file line number Diff line number Diff line change @@ -77,8 +77,7 @@ shinyApp(
77
77
),
78
78
server = function(input, output) {
79
79
output$plot <- renderPlot( plot(head(cars, input$n)) )
80
- },
81
- options=list(launch.browser = rstudio::viewer)
80
+ }
82
81
)
83
82
84
83
shinyAppDir(system.file("examples/01_hello", package="shiny"))
You can’t perform that action at this time.
0 commit comments