summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/OATHAuth/modules/ext.oath.showqrcode.js
blob: 9c7d2b52c83a6e8312010577c8b540c5a1b55e8d (plain)
1
2
3
4
5
6
(function ( $ ) {
	$( function () {
		var $elm = $( '.mw-display-qrcode' );
		$elm.qrcode( $elm.data( 'mw-qrcode-url' ) );
	} );
} )( jQuery );