This file contains hidden or 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
Type: Shiny | |
Title: Client data and query string | |
License: MIT | |
Author: Winston Chang <[email protected]> | |
AuthorUrl: http://www.rstudio.com/ | |
Tags: clientdata query-string | |
DisplayMode: Showcase |
This file contains hidden or 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
helpPopup <- function(title, content, | |
placement=c('right', 'top', 'left', 'bottom'), | |
trigger=c('click', 'hover', 'focus', 'manual')) { | |
tagList( | |
singleton( | |
tags$head( | |
tags$script("$(function() { $(\"[data-toggle='popover']\").popover(); })") | |
) | |
), | |
tags$a( |