Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
97de9197
Commit
97de9197
authored
Jul 06, 2017
by
dev0tion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert components to CSS
parent
2c30d23c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
sidebar.component.css
Breeze.UI/src/app/wallet/sidebar/sidebar.component.css
+0
-0
sidebar.component.ts
Breeze.UI/src/app/wallet/sidebar/sidebar.component.ts
+1
-1
status-bar.component.css
Breeze.UI/src/app/wallet/status-bar/status-bar.component.css
+0
-0
status-bar.component.ts
Breeze.UI/src/app/wallet/status-bar/status-bar.component.ts
+4
-4
transaction-details.component.css
...let/transaction-details/transaction-details.component.css
+0
-0
transaction-details.component.ts
...llet/transaction-details/transaction-details.component.ts
+1
-1
No files found.
Breeze.UI/src/app/wallet/sidebar/sidebar.component.
s
css
→
Breeze.UI/src/app/wallet/sidebar/sidebar.component.css
View file @
97de9197
File moved
Breeze.UI/src/app/wallet/sidebar/sidebar.component.ts
View file @
97de9197
...
...
@@ -3,7 +3,7 @@ import { Component, OnInit } from '@angular/core';
@
Component
({
selector
:
'sidebar'
,
templateUrl
:
'./sidebar.component.html'
,
styleUrls
:
[
'./sidebar.component.
s
css'
]
styleUrls
:
[
'./sidebar.component.css'
]
})
export
class
SidebarComponent
implements
OnInit
{
...
...
Breeze.UI/src/app/wallet/status-bar/status-bar.component.
s
css
→
Breeze.UI/src/app/wallet/status-bar/status-bar.component.css
View file @
97de9197
File moved
Breeze.UI/src/app/wallet/status-bar/status-bar.component.ts
View file @
97de9197
...
...
@@ -10,7 +10,7 @@ import { Subscription } from 'rxjs/Subscription';
@
Component
({
selector
:
'status-bar'
,
templateUrl
:
'./status-bar.component.html'
,
styleUrls
:
[
'./status-bar.component.
s
css'
]
styleUrls
:
[
'./status-bar.component.css'
]
})
export
class
StatusBarComponent
implements
OnInit
{
...
...
@@ -46,15 +46,15 @@ export class StatusBarComponent implements OnInit {
if
(
!
this
.
isChainSynced
)
{
this
.
percentSynced
=
"syncing..."
;
}
}
else
{
this
.
percentSyncedNumber
=
((
this
.
lastBlockSyncedHeight
/
this
.
chainTip
)
*
100
);
if
(
this
.
percentSyncedNumber
.
toFixed
(
0
)
===
"100"
&&
this
.
lastBlockSyncedHeight
!=
this
.
chainTip
)
{
this
.
percentSyncedNumber
=
99
;
}
this
.
percentSynced
=
this
.
percentSyncedNumber
.
toFixed
(
0
)
+
"%"
;
}
this
.
percentSynced
=
this
.
percentSyncedNumber
.
toFixed
(
0
)
+
"%"
;
}
}
},
error
=>
{
...
...
Breeze.UI/src/app/wallet/transaction-details/transaction-details.component.
s
css
→
Breeze.UI/src/app/wallet/transaction-details/transaction-details.component.css
View file @
97de9197
File moved
Breeze.UI/src/app/wallet/transaction-details/transaction-details.component.ts
View file @
97de9197
...
...
@@ -5,7 +5,7 @@ import { NgbModal, NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
@
Component
({
selector
:
'transaction-details'
,
templateUrl
:
'./transaction-details.component.html'
,
styleUrls
:
[
'./transaction-details.component.
s
css'
]
styleUrls
:
[
'./transaction-details.component.css'
]
})
export
class
TransactionDetailsComponent
implements
OnInit
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment