Nothing
      # Webshot Delay
# If not specified, estimate `webshot_delay` using height and width
# 
# @param height Height
# @param width Width
# @param webshot_delay Webshot Delay
# 
# @return webshot_delay (in seconds).
gt_estimate_webshot_delay <- function(height, 
                                      width, 
                                      webshot_delay){
  
  if(is.null(webshot_delay)){
    hw_max <- max(height, width)
    webshot_delay <- max(1,hw_max / 125)
  }
  
  return(webshot_delay)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.