Skip to content

Commit

Permalink
Fix settings page
Browse files Browse the repository at this point in the history
  • Loading branch information
slothbag committed Jul 12, 2016
1 parent d2748b0 commit f7d5557
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions platform/builddmg.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hdiutil create -volname HierarchicalDAO -srcfolder HierarchicalDAO.app/ -ov -format UDZO hierarchicaldao.dmg
4 changes: 3 additions & 1 deletion ui/js/settings_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ SettingsPage.route = "/settings";

SettingsPage.controller = function() {

this.accounts = web3.eth.accounts;
this.accounts = []
if (rpcAvailable)
this.accounts = web3.eth.accounts;

this.save = function() {
ethrpc = $('#ethrpc').val();
Expand Down

0 comments on commit f7d5557

Please sign in to comment.