-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* topbar * offline signing option * decode signed operation hash UI * fix new data structure * update api for operations * Account table re-adjusted * set up zeronet * minor changes * delegator pipe update * truncatePipe * time-ago pipe * tooltips for app-activity * add class for constants * switch to betanet * update betanet chain_id * ActivityComponent revamped * fix signed decoding * move online signing warning * tweak row padding * minor UI fix * minor fix * small change buttons * context-menu for electron * fix TypeError at Menu.popup * allow to unset delegate in integrity check * code cleanup * change walletService to public in home-page * delegate UI fix * minor text changes * minor spelling * spelling * test of TranslateService * fix account import bug * update to betanet * test code transferred to homePage and Language button * homePageComponent and startComponent translated into fr * 3 more components translated * ru and jp json completed * 6 components translated * finishing translation * translation completed * fix electron issue * update css for home-page component * fix start component height * lifecycle hook for 'Show help' btn * top-bar-btn vertical aligned * translation text * update for zeronet * first send modal modified * update operation service for multiple transactions * send modals 90% completed * Fix Show More btn * Show More btn in activityComponent * more btn * added portuguese * jp updated * Fee input added * korean language added * minor change * version number * fix translation race condition * add support for multi-send in account * add alphanet * add total fee for multi-send * randomize api server * fix some translation race errors * fix operations from api * fix css heights
- Loading branch information
Showing
53 changed files
with
3,384 additions
and
491 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<app-home-page></app-home-page> | ||
<app-home-page></app-home-page> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
import { WalletService } from './services/wallet.service'; | ||
import { CoordinatorService } from './services/coordinator.service'; | ||
import { TranslateService } from '@ngx-translate/core'; | ||
|
||
@Component({ | ||
selector: 'app-root', | ||
templateUrl: './app.component.html', | ||
styleUrls: ['./app.component.scss'] | ||
selector: 'app-root', | ||
templateUrl: './app.component.html', | ||
styleUrls: ['./app.component.scss'] | ||
}) | ||
export class AppComponent implements OnInit { | ||
|
||
constructor( | ||
private walletService: WalletService, | ||
private coordinatorService: CoordinatorService) { } | ||
ngOnInit() { | ||
this.walletService.loadStoredWallet(); | ||
if (this.walletService.wallet) { | ||
this.coordinatorService.startAll(); | ||
constructor( | ||
private walletService: WalletService, | ||
private coordinatorService: CoordinatorService | ||
) { } | ||
|
||
ngOnInit() { | ||
this.walletService.loadStoredWallet(); | ||
|
||
if (this.walletService.wallet) { | ||
this.coordinatorService.startAll(); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.