making eslint happy

This commit is contained in:
Jason Clark 2017-11-25 15:47:34 -07:00
parent bd48d858f4
commit 75ef848196
3 changed files with 8 additions and 7 deletions

View File

@ -1566,7 +1566,7 @@ function setUseBlockie (val) {
})
dispatch({
type: actions.SET_USE_BLOCKIE,
value: val
value: val,
})
}
}
}

View File

@ -20,7 +20,7 @@ function IdenticonComponent () {
function mapStateToProps (state) {
return {
useBlockie: state.metamask.useBlockie
useBlockie: state.metamask.useBlockie,
}
}
@ -102,15 +102,16 @@ IdenticonComponent.prototype.componentDidUpdate = function () {
}
}
function _generateBlockie(container, address, diameter) {
function _generateBlockie (container, address, diameter) {
const img = new Image()
img.src = toDataUrl(address)
const dia = !diameter || diameter < 50 ? 50 : diameter
img.height, img.width = dia * 1.25
img.height = dia * 1.25
img.width = dia * 1.25
container.appendChild(img)
}
function _generateJazzicon(container, address, diameter) {
function _generateJazzicon (container, address, diameter) {
const img = iconFactory.iconForAddress(address, diameter)
container.appendChild(img)
}

View File

@ -317,7 +317,7 @@ function reduceMetamask (state, action) {
case actions.SET_USE_BLOCKIE:
return extend(metamaskState, {
useBlockie: action.value
useBlockie: action.value,
})
default: