mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-18 15:10:03 +00:00
Fixes issue with loading screen timeout
Limits decimal places on enabled-exchanges componenet to help lower resolutions
This commit is contained in:
@@ -19,8 +19,8 @@
|
||||
</tr>
|
||||
<tr ng-repeat="value in exchange.exchangeValues">
|
||||
<td><a href="" ng-click="reloadDashboardWithExchangeCurrency(exchange,value)">{{value.CryptoCurrency}}</a></td>
|
||||
<td>{{value.Last}}</td>
|
||||
<td>{{value.Volume}}</td>
|
||||
<td>{{value.Last | number: 2}}</td>
|
||||
<td>{{value.Volume | number: 2}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@@ -15,6 +15,7 @@ angular.module('myApp.home', ['ngRoute'])
|
||||
$rootScope.$on('CurrencyChanged', function(event, args) {
|
||||
$scope.currency = args.Currency;
|
||||
$scope.exchange = args.Exchange;
|
||||
$scope.loaded = true;
|
||||
});
|
||||
|
||||
$timeout(function() {
|
||||
|
||||
Reference in New Issue
Block a user