Skip to content

Commit b7aaa84

Browse files
committed
Merge pull request #275 from ropensci/fix-jp-file-read
maybe fix japanese file read error
2 parents 3a6b9b4 + 4969d70 commit b7aaa84

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

R/offline.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,6 @@ get_browser <- function() {
114114
# default web browser
115115
if (is.null(browseR) || !is.function(browseR) ||
116116
inherits(try(browseR('http://www.rstudio.com'), silent = TRUE), 'try-error'))
117-
browseR = getOption("browser")
117+
browseR = browseURL
118118
browseR
119119
}

R/print.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ knit_print.plotly <- function(x, options, ...) {
4141
#' @export
4242
print.offline <- function(x, ...) {
4343
off <- offline_bundle(jq = TRUE)
44-
plotlyjs <- readChar(off, file.info(off)$size)
44+
plotlyjs <- readChar(off, file.info(off)$size, useBytes=TRUE)
4545
html <- sprintf(
4646
'<!DOCTYPE html><html lang="en">
4747
<head>
@@ -62,7 +62,7 @@ print.offline <- function(x, ...) {
6262
}
6363
index <- file.path(d, "index.html")
6464
res <- writeLines(html, index)
65-
if (!is.null(x$viewer)) x$viewer(index)
65+
if (is.function(x$viewer)) x$viewer(index)
6666
}
6767

6868
#' Embed a plotly iframe into an R markdown document via \code{knit_print}
@@ -80,7 +80,7 @@ knit_print.offline <- function(x, options, ...) {
8080
# if this is the first plot, place bundle just before the plot
8181
if (length(knitr::knit_meta(class = "plotly", clean = FALSE)) == 0) {
8282
off <- offline_bundle(jq = TRUE)
83-
b <- readChar(off, file.info(off)$size)
83+
b <- readChar(off, file.info(off)$size, useBytes=TRUE)
8484
p <- paste0(
8585
sprintf('<script type="text/javascript">%s</script>', b),
8686
p

0 commit comments

Comments
 (0)