Skip to content

Commit

Permalink
Merge pull request #63 from markvantilburg/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
davidshimjs committed Nov 25, 2015
2 parents 540308a + bd3de7f commit 04f46c6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ new QRCode(document.getElementById("qrcode"), "http://jindo.dev.naver.com/collie
or with some options

```
var qrcode = new QRCode("test", {
<div id="qrcode"></div>
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
text: "http://jindo.dev.naver.com/collie",
width: 128,
height: 128,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
});
</script>
```

and you can use some methods
Expand Down

0 comments on commit 04f46c6

Please sign in to comment.