File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * Header Component
3+ *
4+ * @memberOf riccardo
5+ * @description
6+ * Header Component.
7+ */
8+
9+ ( function ( ) {
10+ 'use strict' ;
11+
12+ angular . module ( 'riccardo' ) . component ( 'riccardoHeader' , {
13+ bindings : { } ,
14+ controller : HeaderCmptCtrl ,
15+ templateUrl : 'app/common/header/riccardo-header.html'
16+ } ) ;
17+
18+ HeaderCmptCtrl . $inject = [ ] ;
19+
20+ /**
21+ * @name HeaderCmptCtrl
22+ * @function HeaderCmptCtrl
23+ * @memberOf riccardo.riccardoHeader
24+ * @description
25+ * Header component controller.
26+ */
27+ function HeaderCmptCtrl ( ) {
28+ var $ctrl = this ;
29+ }
30+ } ( ) ) ;
Original file line number Diff line number Diff line change 1+ < header class ="headerContainer ">
2+ < h1 class ="pageTitle "> Riccardo Exercise</ h1 >
3+ < a href ="/ " class ="link headerLogo " title ="Riccardo logo "> </ a >
4+ </ header >
You can’t perform that action at this time.
0 commit comments