@@ -66,16 +66,12 @@ <h3 class="title">{{session.kind}}</h3>
66
66
67
67
< div class ="row session-details " *ngIf ="session.kind === 'Keynote' && speaker ">
68
68
< div class ="col-sm-3 col-xs-12 ">
69
- < a (click) ="onSelect(speaker.id) ">
70
- < img class ="speaker-img " src ='{{speaker.img}} '>
71
- </ a >
69
+ < img class ="speaker-img " src ='{{speaker.img}} '>
72
70
</ div >
73
71
74
72
< div class ="col-sm-9 col-xs-12 align-left justify ">
75
- < a (click) ="onSelect(speaker.id) ">
76
- < h5 class ="name "> {{speaker.name}}</ h5 >
77
- < h5 > {{speaker.title}}</ h5 >
78
- </ a >
73
+ < h5 class ="name "> {{speaker.name}}</ h5 >
74
+ < h5 > {{speaker.title}}</ h5 >
79
75
</ div >
80
76
</ div >
81
77
@@ -87,23 +83,23 @@ <h5>{{speaker.title}}</h5>
87
83
< div class ="col-md-7 col-sm-12 align-left justify ">
88
84
< h5 class ="name "> {{session.name}}</ h5 >
89
85
<!--TODO Add the rest of the information-->
90
- < div class ="description-wrapper " *ngIf ="session.description ">
91
- < p @myInsertRemoveTrigger class ="description " *ngIf ="showMore || session.description.length <= 300 ">
92
- {{ session.description }}
93
- < span *ngIf ="showMore " (click) ="showMore = !showMore " class ="seeMore ">
94
- < b > see less </ b >
95
- </ span >
96
- </ p >
97
- < p @myInsertRemoveTrigger class ="description " *ngIf ="!showMore && session.description.length > 300 ">
98
- {{ session.description | slice:0:300 }}
99
- < span *ngIf ="!showMore " (click) ="showMore = !showMore " class ="seeMore ">
100
- < b > ... see more </ b >
101
- </ span >
102
- </ p >
103
- </ div >
104
86
</ div >
105
87
</ div >
106
88
89
+ < div class ="description-wrapper " *ngIf ="session.description ">
90
+ < p @myInsertRemoveTrigger class ="description " *ngIf ="showMore || session.description.length <= 300 ">
91
+ {{ session.description }}
92
+ < span *ngIf ="showMore " (click) ="showMore = !showMore " class ="seeMore ">
93
+ < b > see less </ b >
94
+ </ span >
95
+ </ p >
96
+ < p @myInsertRemoveTrigger class ="description " *ngIf ="!showMore && session.description.length > 300 ">
97
+ {{ session.description | slice:0:300 }}
98
+ < span *ngIf ="!showMore " (click) ="showMore = !showMore " class ="seeMore ">
99
+ < b > ... see more </ b >
100
+ </ span >
101
+ </ p >
102
+ </ div >
107
103
108
104
<!--TODO Fetch users checked-in -->
109
105
0 commit comments