import { Component, AfterViewInit, Input, OnInit } from '@angular/core'; import {ApplicationService} from '../../services/application.service'; declare var jQuery: any; @Component({ selector: 'site-footer', template: ` ` }) export class SiteFooterComponent { constructor(public application: ApplicationService) { } }