From 24ad5827206541f131cf5bcc658ff13ca5cd332f Mon Sep 17 00:00:00 2001 From: richarddmorey Date: Mon, 14 Jan 2013 10:18:45 +0100 Subject: [PATCH] Update R/utils.R MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated enable_cdn to use slidifylibraries.googlecode.com rather than slidify.googlecode.com, fixing bug with publishing slidesĀ  --- R/utils.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/utils.R b/R/utils.R index 6db4a9c..05246ce 100644 --- a/R/utils.R +++ b/R/utils.R @@ -14,7 +14,7 @@ embed_images <- function(html_in){ #' #' @noRd enable_cdn <- function(html){ - cdn = 'http://slidify.googlecode.com/git/inst/libraries/' + cdn = 'http://slidifylibraries.googlecode.com/git/inst/libraries/' html = gsub("libraries/", cdn, html, fixed = TRUE) } @@ -143,4 +143,4 @@ merge_list <- function (x, y, ...){ #' @noRd filter_blank <- function(x){ Filter(function(y) y != '', x) -} \ No newline at end of file +}