LukasWallrich / metaUI

Create shiny apps that allow explore of meta-analysis results
https://lukaswallrich.github.io/metaUI/
GNU General Public License v3.0
6 stars 0 forks source link

Move away from shinyBS for popups #31

Open LukasWallrich opened 4 months ago

LukasWallrich commented 4 months ago

shinyBS is no longer maintained and increasingly breaking with modern browsers - so we should switch to something else.

ChatGPT suggests https://rinterface.github.io/bs4Dash/ which looks v powerful but also like it would require a complete rewrite of the app - or to create custom javascript code like the following.

    tags$script(
      '$(document).ready(function(){
          $("#myButton").popover({
            title: "Popover title",
            content: "Here is the popover content.",
            trigger: "hover"
          });
       });'
    )
  ),
  actionButton("myButton", "Hover over me")