1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

identicon - set blockies height and width to identicon diameter

This commit is contained in:
kumavis 2018-03-30 21:45:49 -07:00 committed by GitHub
parent d699c9b8b4
commit 9f7b63bb6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,9 +105,8 @@ IdenticonComponent.prototype.componentDidUpdate = function () {
function _generateBlockie (container, address, diameter) {
const img = new Image()
img.src = toDataUrl(address)
const dia = !diameter || diameter < 50 ? 50 : diameter
img.height = dia * 1.25
img.width = dia * 1.25
img.height = diameter
img.width = diameter
container.appendChild(img)
}