Seed Support #56

Closed
ocnios wants to merge 173 commits from master into build
2 changed files with 3 additions and 3 deletions
Showing only changes of commit cbb3da2795 - Show all commits

View file

@ -72,7 +72,7 @@ var FeaturedCategory = React.createClass({
<ToolTip label="What's this?" body={communityCategoryToolTipText} className="tooltip--header"/>
: '' }</h3>
: '' }
{ this.props.names.map((name) => { return <FileTile key={name} displayStyle="card" name={name} uri={name} /> }) }
{ this.props.names.map((name) => { return <FileTile key={name} displayStyle="card" uri={name} /> }) }
</div>)
}
})

View file

@ -24,12 +24,12 @@ var AddressSection = React.createClass({
event.preventDefault();
}
lbry.wallet_new_address().then((address) => {
lbry.wallet_new_address().then(function(address) {
window.localStorage.setItem('wallet_address', address);
this.setState({
address: address,
});
}.bind(this));
}.bind(this))
},
getInitialState: function() {