From ee2dd3f0381719c7397554c97960885e9ea2d4b8 Mon Sep 17 00:00:00 2001 From: Marta Sestelo Date: Wed, 10 Feb 2016 14:02:34 +0100 Subject: [PATCH] corrected text at info button (with interaction) --- inst/shiny_examples/demo/server.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/shiny_examples/demo/server.R b/inst/shiny_examples/demo/server.R index 58f5fec..e684f98 100644 --- a/inst/shiny_examples/demo/server.R +++ b/inst/shiny_examples/demo/server.R @@ -74,7 +74,7 @@ shinyServer(function(input, output) { }) observeEvent(input$info_btn, { - info("This plot supports mouse based-interaction, via clicking and brushing. The points selected or included in the selected area will be deleted and will not be considered in the analysis. In order to use this option correctly, the selection of the points must be carried out with only one graphical output marked. Once the points have been deleted, the other graphical output options can be marked.") + shinyjs::info("This plot supports mouse based-interaction, via clicking and brushing. The points selected or included in the selected area will be deleted and will not be considered in the analysis. In order to use this option correctly, the selection of the points must be carried out with only one graphical output marked and without interaction. Once the points have been deleted, the other graphical output and estimation options can be marked.") })