Skip to content

Commit

Permalink
Typo - extra closing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
dylan-smith committed Nov 19, 2017
1 parent 88a3b21 commit 12033e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/infinite-scroll.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class InfiniteScrollDirective
if (inputPropChanged(infiniteScrollContainer) || inputPropChanged(infiniteScrollDisabled)) {
this.destroyScroller();

if ((!inputPropChanged(infiniteScrollDisabled) && !this.infiniteScrollDisabled)) ||
if ((!inputPropChanged(infiniteScrollDisabled) && !this.infiniteScrollDisabled) ||
(inputPropChanged(infiniteScrollDisabled) && !infiniteScrollDisabled.currentValue)) {
this.setup();
}
Expand Down

0 comments on commit 12033e8

Please sign in to comment.