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
1045b48d
Commit
1045b48d
authored
Jun 29, 2017
by
dev0tion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add sidebar component
parent
3b529783
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
59 additions
and
0 deletions
+59
-0
sidebar.component.html
Breeze.UI/src/app/wallet/sidebar/sidebar.component.html
+19
-0
sidebar.component.scss
Breeze.UI/src/app/wallet/sidebar/sidebar.component.scss
+0
-0
sidebar.component.spec.ts
Breeze.UI/src/app/wallet/sidebar/sidebar.component.spec.ts
+25
-0
sidebar.component.ts
Breeze.UI/src/app/wallet/sidebar/sidebar.component.ts
+15
-0
No files found.
Breeze.UI/src/app/wallet/sidebar/sidebar.component.html
0 → 100644
View file @
1045b48d
<!-- SIDEBAR -->
<aside
id=
"sidebar"
>
<ul
class=
"list-unstyled menu"
>
<li
class=
"active"
>
<!--<a href="#">-->
<img
src=
"../../../assets/images/ico_bitcoin.svg"
alt=
"Bitcoin"
>
<!--</a>-->
<span
class=
"bar"
></span>
</li>
<!--<li>
<a href="#"><img src="../../../assets/images/ico_stratis.svg" alt="Stratis"></a>
<span class="bar"></span>
</li>-->
</ul>
<!-- /menu-->
<ul
class=
"list-unstyled second"
>
<!--<li><a href="#"><span class="icon-settings"></span></a></li>-->
<li><a
href=
"#"
><span
class=
"icon-settings"
></span></a></li>
</ul>
</aside>
<!-- /sidebar -->
Breeze.UI/src/app/wallet/sidebar/sidebar.component.scss
0 → 100644
View file @
1045b48d
Breeze.UI/src/app/wallet/sidebar/sidebar.component.spec.ts
0 → 100644
View file @
1045b48d
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
SidebarComponent
}
from
'./sidebar.component'
;
describe
(
'SidebarComponent'
,
()
=>
{
let
component
:
SidebarComponent
;
let
fixture
:
ComponentFixture
<
SidebarComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
SidebarComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
SidebarComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should be created'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
Breeze.UI/src/app/wallet/sidebar/sidebar.component.ts
0 → 100644
View file @
1045b48d
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'sidebar'
,
templateUrl
:
'./sidebar.component.html'
,
styleUrls
:
[
'./sidebar.component.scss'
]
})
export
class
SidebarComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
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