ngd-portal
v1.0.1
Published
portal directive
Maintainers
Readme
Portal
A Directive that make element as portable append to body
Installation
npm install ng-portableUsage
@Component({
template: `
<div [portal]="state">...</div>
`
})
export class SomeComponent {
state = false;
}