librenms/lib/qrcodejs
Paul Heinrichs 097a827759 webui: display QR codes for API access (#5988)
* Generate qr code for api hash

Added qrcodejs ( https://github.com/davidshimjs/qrcodejs )

* Add head to modal window

* updated to use fontawesome
2017-02-23 22:19:22 -06:00
..
bower.json webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00
index-svg.html webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00
index.html webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00
index.svg webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00
jquery.min.js webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00
LICENSE webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00
qrcode.js webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00
qrcode.min.js webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00
README.md webui: display QR codes for API access (#5988) 2017-02-23 22:19:22 -06:00

QRCode.js

QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. QRCode.js has no dependencies.

Basic Usages

<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "http://jindo.dev.naver.com/collie");
</script>

or with some options

<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

qrcode.clear(); // clear the code.
qrcode.makeCode("http://naver.com"); // make another code.

Browser Compatibility

IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.

License

MIT License

Contact

twitter @davidshimjs

Bitdeli Badge