ebailey78 / shinyBS

Twitter Bootstrap Components for Shiny
182 stars 47 forks source link

modal is not working in ioslides_presentation #139

Open namrouche993 opened 3 years ago

namrouche993 commented 3 years ago

When i use bsModal in ioslides_presentation, and I click in the actionButton, I had such of screen : hell

my code:

---
title: "Untitled"
author: "Me"
output:
  ioslides_presentation
runtime: shiny
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(shiny)
library(shinyBS)

Interactive R Code

  fluidPage(
    actionButton("tabBut", "View Table"),
    bsModal("modalExample", "Data Table", "tabBut", size = "large",HTML("Hello world"))
  )