1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

identicon - default to imageify

This commit is contained in:
kumavis 2016-06-24 12:07:08 -07:00
parent d3a8f3eebe
commit c8b6da2593

View File

@ -40,7 +40,7 @@ IdenticonComponent.prototype.componentDidMount = function () {
var container = findDOMNode(this)
var diameter = state.diameter || this.defaultDiameter
var imageify = state.imageify
var imageify = state.imageify === undefined ? true : state.imageify
var img = iconFactory.iconForAddress(address, diameter, imageify)
container.appendChild(img)
}