Skip to content

Commit

Permalink
onclick
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-matthewb committed Oct 26, 2023
1 parent 1f49d7e commit f25c947
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion viscstudies/resources/views/studydesigns.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<style type="text/css">
.study-header {font-size:larger;font-weight:bold;border-bottom:1px solid black;border-top:1px solid black}
</style>
<div><span id="facets"></span><div style="display:inline-block;padding:4px"><a href="#" onclick="generateDesignSpreadsheet();return false;">Export Vaccination Info</a> </div></div>
<div><span id="facets"></span><div style="display:inline-block;padding:4px"><a id="generateDesignSpreadsheet" href="#">Export Vaccination Info</a> </div></div>
<script type="text/javascript" nonce="<%=scriptNonce%>">
document.getElementById("generateDesignSpreadsheet")['onclick'] = function(){generateDesignSpreadsheet(); return false;};
</script>
<div id="result">

</div>

0 comments on commit f25c947

Please sign in to comment.