@@ -41,7 +41,7 @@ knit_print.plotly <- function(x, options, ...) {
41
41
# ' @export
42
42
print.offline <- function (x , ... ) {
43
43
off <- offline_bundle(jq = TRUE )
44
- plotlyjs <- readChar(off , file.info(off )$ size )
44
+ plotlyjs <- readChar(off , file.info(off )$ size , useBytes = TRUE )
45
45
html <- sprintf(
46
46
' <!DOCTYPE html><html lang="en">
47
47
<head>
@@ -62,7 +62,7 @@ print.offline <- function(x, ...) {
62
62
}
63
63
index <- file.path(d , " index.html" )
64
64
res <- writeLines(html , index )
65
- if (! is.null (x $ viewer )) x $ viewer(index )
65
+ if (is.function (x $ viewer )) x $ viewer(index )
66
66
}
67
67
68
68
# ' Embed a plotly iframe into an R markdown document via \code{knit_print}
@@ -80,7 +80,7 @@ knit_print.offline <- function(x, options, ...) {
80
80
# if this is the first plot, place bundle just before the plot
81
81
if (length(knitr :: knit_meta(class = " plotly" , clean = FALSE )) == 0 ) {
82
82
off <- offline_bundle(jq = TRUE )
83
- b <- readChar(off , file.info(off )$ size )
83
+ b <- readChar(off , file.info(off )$ size , useBytes = TRUE )
84
84
p <- paste0(
85
85
sprintf(' <script type="text/javascript">%s</script>' , b ),
86
86
p
0 commit comments