| 
									
										
										
										
											2016-09-01 02:08:57 +01:00
										 |  |  | import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | import { BrowserModule }  from '@angular/platform-browser'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { AppComponent } from './app.component'; | 
					
						
							|  |  |  | import { AstronautComponent } from './astronaut.component'; | 
					
						
							|  |  |  | import { CountdownLocalVarParentComponent, CountdownViewChildParentComponent } from './countdown-parent.component'; | 
					
						
							|  |  |  | import { CountdownTimerComponent } from './countdown-timer.component'; | 
					
						
							|  |  |  | import { HeroChildComponent } from './hero-child.component'; | 
					
						
							|  |  |  | import { HeroParentComponent } from './hero-parent.component'; | 
					
						
							|  |  |  | import { MissionControlComponent } from './missioncontrol.component'; | 
					
						
							|  |  |  | import { NameChildComponent } from './name-child.component'; | 
					
						
							|  |  |  | import { NameParentComponent } from './name-parent.component'; | 
					
						
							|  |  |  | import { VersionChildComponent } from './version-child.component'; | 
					
						
							|  |  |  | import { VersionParentComponent } from './version-parent.component'; | 
					
						
							|  |  |  | import { VoterComponent } from './voter.component'; | 
					
						
							|  |  |  | import { VoteTakerComponent } from './votetaker.component'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let directives: any[] = [ | 
					
						
							|  |  |  |     AppComponent, | 
					
						
							|  |  |  |     AstronautComponent, | 
					
						
							|  |  |  |     CountdownTimerComponent, | 
					
						
							|  |  |  |     HeroChildComponent, | 
					
						
							|  |  |  |     HeroParentComponent, | 
					
						
							|  |  |  |     MissionControlComponent, | 
					
						
							|  |  |  |     NameChildComponent, | 
					
						
							|  |  |  |     NameParentComponent, | 
					
						
							|  |  |  |     VersionChildComponent, | 
					
						
							|  |  |  |     VersionParentComponent, | 
					
						
							|  |  |  |     VoterComponent, | 
					
						
							|  |  |  |     VoteTakerComponent | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-01 02:08:57 +01:00
										 |  |  | let schemas: any[] = []; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | // Include Countdown examples
 | 
					
						
							|  |  |  | // unless in e2e tests which they break.
 | 
					
						
							|  |  |  | if (!/e2e/.test(location.search)) { | 
					
						
							|  |  |  |   console.log('adding countdown timer examples'); | 
					
						
							|  |  |  |   directives.push(CountdownLocalVarParentComponent); | 
					
						
							|  |  |  |   directives.push(CountdownViewChildParentComponent); | 
					
						
							| 
									
										
										
										
											2016-09-01 02:08:57 +01:00
										 |  |  | } else { | 
					
						
							|  |  |  |   // In e2e test use CUSTOM_ELEMENTS_SCHEMA to supress unknown element errors
 | 
					
						
							|  |  |  |   schemas.push(CUSTOM_ELEMENTS_SCHEMA); | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @NgModule({ | 
					
						
							|  |  |  |   imports: [ | 
					
						
							|  |  |  |     BrowserModule | 
					
						
							|  |  |  |   ], | 
					
						
							|  |  |  |   declarations: directives, | 
					
						
							| 
									
										
										
										
											2016-09-01 02:08:57 +01:00
										 |  |  |   bootstrap: [ AppComponent ], | 
					
						
							|  |  |  |   schemas: schemas | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  | }) | 
					
						
							|  |  |  | export class AppModule { } |