Skip to content

Commit

Permalink
Merge pull request #123 from RhoInc/dev-v2.5.1
Browse files Browse the repository at this point in the history
v2.5.1
  • Loading branch information
samussiah authored Mar 25, 2019
2 parents d0e3574 + 4d95049 commit ef46cb2
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
.DS_Store
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "safety-outlier-explorer",
"version": "2.5.0",
"version": "2.5.1",
"description": "Chart showing participant trajectories of lab measures, vital signs and other related measures in clinical trials.",
"module": "./src/index.js",
"main": "./safetyOutlierExplorer.js",
Expand Down
6 changes: 6 additions & 0 deletions test-page/hyslaw/hysLaw.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const settings = {};

d3.csv('https://rhoinc.github.io/data-library/data/clinical-trials/renderer-specific/hy.csv', function(data) {
safetyOutlierExplorer('#safety-outlier-explorer .content', settings)
.init(data);
});
26 changes: 26 additions & 0 deletions test-page/hyslaw/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv = 'Content-Type' content = 'text/html; charset = utf-8'>

<title>Safety Outlier Explorer - Hy's Law</title>

<script type = 'text/javascript' src = 'https://d3js.org/d3.v3.min.js'></script>
<script type = 'text/javascript' src = 'https://cdn.jsdelivr.net/gh/RhoInc/Webcharts/build/webcharts.js'></script>
<script type = 'text/javascript' src = '../../safetyOutlierExplorer.js'></script>

<link type = 'text/css' rel = 'stylesheet' href = 'https://cdn.jsdelivr.net/gh/RhoInc/Webcharts/css/webcharts.css'>

</head>

<body>
<div class = 'safetyExplorerChart'
id = 'safety-outlier-explorer'>
<div class = 'header'></div>
<div class = 'content'></div>
</div>
</body>

<script type = 'text/javascript' src = 'hysLaw.js'></script>

</html>

0 comments on commit ef46cb2

Please sign in to comment.