Fix issues with methods not existing on component
parent
fe82191625
commit
2ddd4834a1
|
|
@ -1,6 +1,6 @@
|
||||||
<div class="wrapper" [@inout]="startFadeIn">
|
<div class="wrapper" [@inout]="startFadeIn">
|
||||||
<div class="photo">
|
<div class="photo">
|
||||||
<button md-button (click)="play()">
|
<button md-button (click)="toggleState()">
|
||||||
<img src="../../assets/images/event_back.png" />
|
<img src="../../assets/images/event_back.png" />
|
||||||
</button>
|
</button>
|
||||||
</div><!--
|
</div><!--
|
||||||
|
|
|
||||||
|
|
@ -67,4 +67,8 @@ export class EventLargeComponent implements AfterContentInit {
|
||||||
this.state = this.state === 'open' ? 'closed' : 'open'
|
this.state = this.state === 'open' ? 'closed' : 'open'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
share(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue