Fix issues with methods not existing on component

Transactions
Dan 2017-09-07 20:43:08 -06:00
parent fe82191625
commit 2ddd4834a1
2 changed files with 5 additions and 1 deletions

View File

@ -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><!--

View File

@ -67,4 +67,8 @@ export class EventLargeComponent implements AfterContentInit {
this.state = this.state === 'open' ? 'closed' : 'open' this.state = this.state === 'open' ? 'closed' : 'open'
} }
share(){
}
} }