Skip to content

Commit

Permalink
Merge pull request #4137 from IgniteUI/mvenkov/remove-deprecation-war…
Browse files Browse the repository at this point in the history
…ning-7.1.x

Remove calls to closeOnOutsideClick property
  • Loading branch information
kdinev authored Mar 1, 2019
2 parents ef79a45 + 289fcb4 commit c1d8f58
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@ export class IgxToggleActionDirective implements OnInit {
*/
@HostListener('click')
public onClick() {
if (this.closeOnOutsideClick !== undefined) {
this._overlayDefaults.closeOnOutsideClick = this.closeOnOutsideClick;
if (this._closeOnOutsideClick !== undefined) {
this._overlayDefaults.closeOnOutsideClick = this._closeOnOutsideClick;
}
if (this.outlet) {
this._overlayDefaults.outlet = this.outlet;
Expand Down

0 comments on commit c1d8f58

Please sign in to comment.