Skip to content

Commit

Permalink
Use single-quotes in JS, per Google style guide
Browse files Browse the repository at this point in the history
  • Loading branch information
eweitz authored Jul 23, 2017
1 parent 2bdc726 commit f472ff3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ Then go to [http://localhost/ideogram/examples](http://localhost/ideogram/exampl
<body>
<script type="text/javascript">
var ideogram = new Ideogram({
organism: "human",
organism: 'human',
annotations: [{
"name": "BRCA1",
"chr": "17",
"start": 43044294,
"stop": 43125482
name: 'BRCA1',
chr: '17',
start: 43044294,
stop: 43125482
}]
});
</script>
Expand Down

0 comments on commit f472ff3

Please sign in to comment.