Skip to content
Snippets Groups Projects
Select Git revision
  • 35df069db3e2aee1629775f0e33dd4f62d352226
  • dev default
  • 61-feature-add-optional-backwards-mapping-for-consistency-with-older-version
  • 61-feature-add-optional-backwards-mapping-for-consistency-with-older-version-2
  • main protected
  • 11-test-fix-tests-to-handle-licensed-data-resources-from-trud-snd-omop
  • general
  • pypi
  • old-main
  • v0.0.3
10 results

phen.html

Blame
  • sourceembed.js 357 B
    
    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);
      });
    };