Skip to content

Commit

Permalink
small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
javajohnHub committed Jan 24, 2018
1 parent c2c2e3b commit b5679ae
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ function createWindow() {
win = new BrowserWindow({
x: 0,
y: 0,
width: 400,
height: 600,
width: size.width,
height: 800,
});

// and load the index.html of the app.
Expand Down
19 changes: 10 additions & 9 deletions src/app/components/home/home.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<div class="container">
<span *ngIf="loading">Loading.....</span><br/>
<ng-container *ngIf="paymentData">
<span style="color: green;">{{ currentBlock}}:</span> Mining....
<br/>
<p-chart type="bar" [data]="chartData"></p-chart>
<hr/>
<!--<span style="color: darkgoldenrod">last payment: </span>{{ lastPayment || 'None'}}
<br/>
<hr/>-->
</ng-container>
<span style="color: darkgoldenrod">Donations: </span><a href="https://explore.burst.cryptoguru.org/account/2502243242455039725" target="_blank">BURST-GZRF-Z4W4-DK8Y-42GG7</a><br/><br/>
<span style="color: darkgoldenrod">Last Updated: </span>{{lastUpdated}}<br/>
<div class="ui-g ui-fluid">
Expand Down Expand Up @@ -33,12 +42,4 @@

</ng-container>

<ng-container *ngIf="paymentData">
<span style="color: green;">{{ currentBlock}}:</span> Mining....
<br/>
<p-chart type="bar" [data]="chartData"></p-chart>
<hr/>
<!--<span style="color: darkgoldenrod">last payment: </span>{{ lastPayment || 'None'}}
<br/>
<hr/>-->
</ng-container>

0 comments on commit b5679ae

Please sign in to comment.