fix compilation errors with latest TS/TSLint (#1651)

latest TS/TSLint libs detect couple of problems related to private apis
used earlier; changing to public in order to fix compilation
This commit is contained in:
Denys Vuika
2017-02-23 15:46:58 +00:00
committed by Mario Romano
parent c35f948546
commit 3375a63680
4 changed files with 6 additions and 5 deletions

View File

@@ -362,7 +362,7 @@ export class AnalyticsReportParametersComponent implements OnInit, OnChanges, On
});
}
private generateDownloadElement(downloadUrl: string, paramQuery: ReportQuery) {
generateDownloadElement(downloadUrl: string, paramQuery: ReportQuery) {
let downloadElement = window.document.createElement('a');
downloadElement.setAttribute('id', 'export-download');
downloadElement.setAttribute('href', downloadUrl);