Skip to content

Commit

Permalink
Merge pull request #165 from richarddmorey/master
Browse files Browse the repository at this point in the history
fixed bug with publishing - cdn url was wrong
  • Loading branch information
ramnathv committed Jan 17, 2013
2 parents 541146d + 24ad582 commit d641ca1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down Expand Up @@ -143,4 +143,4 @@ merge_list <- function (x, y, ...){
#' @noRd
filter_blank <- function(x){
Filter(function(y) y != '', x)
}
}

0 comments on commit d641ca1

Please sign in to comment.