Guest User

Untitled

a guest
Jan 12th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <button *ngIf="!loader" type="submit" class="custom-button blue left">Update</button>
  2. <button (click)="close()" class="custom-button red left">Close</button>
  3.  
  4. export class InventoryDetailsComponent implements OnInit {
  5. @Input() inventoryDetails: boolean;
  6. **@Output() inventoryDetailsChange = new EventEmitter<boolean>();**
  7. @Output() update = new EventEmitter();
  8.  
  9. close () {
  10. this.inventoryDetailsChange.emit(false);
  11. }
Add Comment
Please, Sign In to add comment