Project

General

Profile

1
import { Component, OnInit } from '@angular/core';
2

    
3
@Component ({
4
  selector: 'app-sources-update',
5
  templateUrl: 'sources-update.component.html'
6
})
7

    
8
export class SourcesUpdateComponent implements OnInit {
9

    
10
  constructor() {}
11

    
12
  ngOnInit() {}
13

    
14
  downloadLogo() {
15
    window.open('../../../assets/imgs/OpenAIRE_validated_icon_medium.png', '_blank', 'enabledstatus=0,toolbar=0,menubar=0,location=0');
16
  }
17
}
(6-6/10)