Skip to content

Commit

Permalink
remove uneeded log
Browse files Browse the repository at this point in the history
  • Loading branch information
choarau - Syscea committed Nov 17, 2019
1 parent b616422 commit 5d8d539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@directives/responsive-window/responsive-window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class ResponsiveWindowDirective implements OnInit, OnDestroy, DoCheck {

public getCurrentBreakpoint(): string {
const width: number = this.getWidth();
console.error("getCurrentBreakpoint", width)
// console.error("getCurrentBreakpoint", width)
if (this._responsiveConfig.config.breakPoints.xl.min <= width) {
return 'xl';
} else if (this._responsiveConfig.config.breakPoints.lg.max >= width && this._responsiveConfig.config.breakPoints.lg.min <= width) {
Expand Down

0 comments on commit 5d8d539

Please sign in to comment.