mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-06 17:48:50 +01:00
docs(download): add download button with hubspot form (#5725)
This commit is contained in:
parent
1abd81dae3
commit
42815aa714
15 changed files with 301 additions and 25 deletions
|
|
@ -0,0 +1,24 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright Akveo. All Rights Reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*/
|
||||
|
||||
import { Component } from '@angular/core';
|
||||
import { NbDialogService } from '@nebular/theme';
|
||||
import { DownloadFormComponent } from '../download-form/download-form.component';
|
||||
|
||||
@Component({
|
||||
selector: 'ngx-download-admin',
|
||||
templateUrl: './download-admin.component.html',
|
||||
styleUrls: ['./download-admin.component.scss'],
|
||||
})
|
||||
export class DownloadAdminComponent {
|
||||
|
||||
constructor(private dialogService: NbDialogService) {
|
||||
}
|
||||
|
||||
openDialog() {
|
||||
this.dialogService.open(DownloadFormComponent);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue