Skip to content

Commit

Permalink
fix(overlays): expose mode, id, keyboardClose
Browse files Browse the repository at this point in the history
fixes #15366
  • Loading branch information
manucorporat committed Aug 29, 2018
1 parent 16452b2 commit cc960c3
Show file tree
Hide file tree
Showing 37 changed files with 244 additions and 128 deletions.
2 changes: 1 addition & 1 deletion angular/src/util/overlay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class OverlayBaseController<Opts, Overlay> {
return proxyMethod(this.ctrl, 'create', opts);
}

dismiss(data?: any, role?: string, id?: number): Promise<void> {
dismiss(data?: any, role?: string, id?: string): Promise<void> {
return proxyMethod(this.ctrl, 'dismiss', data, role, id);
}

Expand Down
Loading

0 comments on commit cc960c3

Please sign in to comment.