Merge pull request #286 from MetaMask/FixSpinner

Made network spinner clickable
feature/default_network_editable
Dan Finlay 9 years ago committed by GitHub
commit 92f8d1b2ca
  1. 5
      CHANGELOG.md
  2. 1
      ui/app/components/network.js

@ -2,8 +2,9 @@
## Current Master ## Current Master
- Clean up UI - Clean up UI.
- Remove nonfunctional QR code button - Remove nonfunctional QR code button.
- Make network loading indicator clickable to select accessible network.
## 2.3.1 2016-06-09 ## 2.3.1 2016-06-09

@ -19,6 +19,7 @@ Network.prototype.render = function() {
if (networkNumber == 'loading') { if (networkNumber == 'loading') {
return h('img', { return h('img', {
title: 'Attempting to connect to blockchain.', title: 'Attempting to connect to blockchain.',
onClick:(event) => this.props.onClick(event),
style: { style: {
width: '27px', width: '27px',
marginRight: '-27px' marginRight: '-27px'

Loading…
Cancel
Save