-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement JS [helpers](https://bulmajs.tomerbe.co.uk) #15
Labels
Comments
@JohnCoene : after implementing the JS helpers, do we target a CRAN release end of the year? |
Sounds like a good idea! Will look into it this summer. A full review of the package is probably overdue as well. |
DivadNojnarg
changed the title
Implement JS [helpers](https://vizuaalog.github.io/BulmaJS/)
Implement JS [helpers](https://bulmajs.tomerbe.co.uk)
Jun 1, 2020
Updated JS link |
other links: https://demo.creativebulma.net/ |
WIP: see 21f7483 |
poke @JohnCoene library(shiny)
library(shinybulma)
ui <- bulmaPage(
tags$head(
tags$script(
"$(function() {
Bulma().alert({
type: 'danger',
title: 'This is an alert!',
body: 'Ooohh what button you gonna click?',
confirm: 'Confirm it!',
cancel: 'Maybe not'
});
});
"
)
)
)
server <- function(input, output, session) {
}
shinyApp(ui, server) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: