Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
niksmac committed Feb 17, 2016
1 parent 28736a4 commit 3c4fd9f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="com.lightrains.etherwallet" version="0.0.2" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="com.lightrains.etherwallet" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>EtherWallet</name>
<description>
A Wallet for Ethereum (ETH)
Expand Down
7 changes: 0 additions & 7 deletions www/js/controllers.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,21 +133,14 @@ angular.module('starter.controllers', ['chart.js', 'ngCordova'])
$scope.values.volume = resp.data.volume[0][1];
});
};

$http.get('http://www.coincap.io/history/1day/ETH').then(function(resp) {
$rootScope.hide($ionicLoading);
$scope.values.mktcap = resp.data.market_cap[0][1];
$scope.values.price = resp.data.price[0][1];
$scope.values.volume = resp.data.volume[0][1];
});

socket.on('global', function (globalMsg) {
console.log(globalMsg);
})

socket.on('trade', function (tradeMsg) {
$localStorage.marketcap = tradeMsg;
console.log(tradeMsg);
if(tradeMsg.message.coin === "ETH") {
$scope.values.short = tradeMsg.message.msg.short;
$scope.values.long = tradeMsg.message.msg.long;
Expand Down
15 changes: 8 additions & 7 deletions www/templates/credits.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,18 @@ <h1 class="title">Credits</h1>
<a class="item" href="https://etherchain.org">
etherchain.org
</a>

<a class="item" href="https://CoinCap.io">
CoinCap.io
</a>

<a class="item" href="https://shapeshift.io">
shapeshift.io
</a>
<div class="item item-divider">
Development Sponsors
</div>
<a class="item" href="https://pegke.com">
Pegke Loyalty
</a>
</div>
</ion-content>
<a class="item" href="https://pegke.com">
Pegke Loyalty
</a>
</div>
</ion-content>
</ion-view>

0 comments on commit 3c4fd9f

Please sign in to comment.