Skip to content

Commit 9504606

Browse files
author
Benoit Thieurmel
committed
Fix url note (http -> https)
1 parent 90b5198 commit 9504606

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

R/dependencies.R

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#' Use fontAwesome icons in visNetwork \code{graph}
22
#'
3-
#' Add \href{http://fontawesome.com}{Font-Awesome} for styling
3+
#' Add \href{https://fontawesome.com}{Font-Awesome} for styling
44
#' our \code{graph} with beautiful, professional icons. Please note
55
#' that you'll already have these icons if using Shiny.
66
#' Can also use \link{addIonicons}
@@ -86,9 +86,8 @@ addFontAwesome <- function(graph, name = "font-awesome", version = c("4.7.0", "5
8686

8787
#' Use Ionicons in visNetwork \code{graph}
8888
#'
89-
#' Add \href{http://ionicons.com/}{Ionicons} for styling
89+
#' Add \href{https://ionic.io/ionicons}{Ionicons} for styling
9090
#' our \code{graph} with beautiful, professional icons.
91-
#' See \href{http://ionicons.com/cheatsheet.html}{Cheatsheet} to get CSS content code.
9291
#' Can also use \link{addFontAwesome}
9392
#'
9493
#' @param graph : a visNetwork object

inst/NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The visNetwork package inludes vis.js library
22

3-
- vis.js, http://visjs.org/
3+
- vis.js, https://visjs.org
44

55

66
vis license

man/addFontAwesome.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/addIonicons.Rd

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/Introduction-to-visNetwork.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ vignette: >
99
%\VignetteEncoding{UTF-8}
1010
---
1111

12-
**visNetwork** is a R package for network visualization, using **vis.js** javascript library (http://visjs.org). All the remarks and bugs returns are welcome on github : https://github.com/datastorm-open/visNetwork.
12+
**visNetwork** is a R package for network visualization, using **vis.js** javascript library (https://visjs.org). All the remarks and bugs returns are welcome on github : https://github.com/datastorm-open/visNetwork.
1313

1414
## Minimal example
1515

@@ -218,7 +218,7 @@ visNetwork(nodes, edges, width = "100%") %>%
218218

219219
## Use font awesome icons in your network
220220

221-
You can use **Font Awesome** icons using groups or nodes options. **Font Awesome** library (http://fortawesome.github.io/Font-Awesome/) is not part of dependencies. use addFontAwesome() if needed.
221+
You can use **Font Awesome** icons using groups or nodes options. **Font Awesome** library (https://fontawesome.com) is not part of dependencies. use addFontAwesome() if needed.
222222

223223
```{r}
224224
nodes <- data.frame(id = 1:3, group = c("B", "A", "B"))

0 commit comments

Comments
 (0)