Skip to content

Commit 0e26958

Browse files
committed
tippy 0.1.0 is now on CRAN
1 parent 214704e commit 0e26958

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/build.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ jobs:
9999
if: matrix.config.release
100100
run: |
101101
Rscript -e 'remotes::install_cran("pkgdown")'
102-
Rscript -e 'remotes::install_github("JohnCoene/tippy")'
103102
R CMD INSTALL .
104103
Rscript pkgdown/build-docs.R
105104

DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ Suggests:
3131
rmarkdown,
3232
shiny,
3333
sparkline,
34-
testthat
34+
testthat,
35+
tippy
3536
Encoding: UTF-8
3637
LazyData: true
3738
Roxygen: list(markdown = TRUE)

vignettes/cookbook/cookbook.Rmd

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -632,17 +632,14 @@ which provides a JavaScript based tooltip that supports keyboard, touch, and scr
632632
reader use.
633633

634634
```{r}
635-
# Install tippy (version >= 0.1.0 recommended).
636-
# remotes::install_github("JohnCoene/tippy")
637-
638635
library(htmltools)
639636
library(dplyr)
640637
library(tippy)
641638
642639
data <- as_tibble(mtcars[1:6, ], rownames = "car") %>%
643640
select(car:hp)
644641
645-
# See the ?tippy documentation for how to customize tooltips
642+
# See the ?tippy documentation to learn how to customize tooltips
646643
with_tooltip <- function(value, tooltip, ...) {
647644
div(style = "text-decoration: underline; text-decoration-style: dotted; cursor: help",
648645
tippy(value, tooltip, ...))

0 commit comments

Comments
 (0)