summaryrefslogtreecommitdiff
path: root/_site/site_libs/navigation-1.1/sourceembed.js
blob: 8464b0c88eb5c7f08f2fb1041eef0fa939f3c573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

window.initializeSourceEmbed = function(filename) {
  $("#rmd-download-source").click(function() {
    var src = $("#rmd-source-code").html();
    var a = document.createElement('a');
    a.href = "data:text/x-r-markdown;base64," + src;
    a.download = filename;
    document.body.appendChild(a);
    a.click();
    document.body.removeChild(a);
  });
};