Skip to content

Commit

Permalink
fixing lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vlio20 committed Mar 21, 2017
1 parent cc7f8f8 commit 651e509
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/common/decorators/decorators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ export default function debounce(ms: number = DEFAULT_DEBOUNCE_MS) {

return this[propertyKey];
}
}
}
};
};
}
2 changes: 1 addition & 1 deletion src/app/demo/demo/demo.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class DemoComponent {
@HostListener('document:scroll')
@debounce(100)
updateIsAtTop() {
this.isAtTop = document.body.scrollTop === 0
this.isAtTop = document.body.scrollTop === 0;
}

configChanged() {
Expand Down
4 changes: 2 additions & 2 deletions src/app/dp-day-picker/dp-day-picker.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class DpDayPickerComponent implements OnChanges,
dimElem: this.popupElem,
drops: this.pickerConfig.drops,
opens: this.pickerConfig.opens
})
});
}
}

Expand Down Expand Up @@ -334,7 +334,7 @@ export class DpDayPickerComponent implements OnChanges,
}

ngOnDestroy() {
this.handleInnerElementClickUnlisteners.forEach(ul => ul())
this.handleInnerElementClickUnlisteners.forEach(ul => ul());
this.appendToElement.removeChild(this.calendarWrapper);
}
}

0 comments on commit 651e509

Please sign in to comment.