Nothing
Code
downloadButton("dl", "Download")
Output
<a aria-disabled="true" class="btn btn-default shiny-download-link disabled" download href="" id="dl" tabindex="-1" target="_blank">
<i class="fas fa-download" role="presentation" aria-label="download icon"></i>
Download
</a>
Code
downloadButton("dl", "Download", enabled = FALSE)
Output
<a aria-disabled="true" class="btn btn-default shiny-download-link disabled" data-shiny-disable-auto-enable download href="" id="dl" tabindex="-1" target="_blank">
<i class="fas fa-download" role="presentation" aria-label="download icon"></i>
Download
</a>
Code
downloadButton("dl", "Download", enabled = TRUE)
Output
<a id="dl" class="btn btn-default shiny-download-link" href="" target="_blank" download data-shiny-disable-auto-enable>
<i class="fas fa-download" role="presentation" aria-label="download icon"></i>
Download
</a>
Code
downloadLink("dl", "Download")
Output
<a aria-disabled="true" class="shiny-download-link disabled" download href="" id="dl" tabindex="-1" target="_blank">Download</a>
Code
downloadLink("dl", "Download", enabled = FALSE)
Output
<a aria-disabled="true" class="shiny-download-link disabled" data-shiny-disable-auto-enable download href="" id="dl" tabindex="-1" target="_blank">Download</a>
Code
downloadLink("dl", "Download", enabled = TRUE)
Output
<a id="dl" class="shiny-download-link" href="" target="_blank" download data-shiny-disable-auto-enable>Download</a>
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.