jquery.qrcode: Set the border to unitless zero, per coding standards

Change-Id: If29cfb98c99f598a9138d59e0dfa6494138afcd9
This commit is contained in:
James D. Forrester 2019-04-06 17:06:52 -07:00
parent 4314ecdfd7
commit a65f8d4439

View file

@ -68,7 +68,7 @@
$table = $( '<table></table>' )
.css( 'width', options.width + 'px' )
.css( 'height', options.height + 'px' )
.css( 'border', '0px' )
.css( 'border', '0' )
.css( 'border-collapse', 'collapse' )
.css( 'background-color', options.background );