Skip to content

Commit

Permalink
fix: Fixed another edge case of select
Browse files Browse the repository at this point in the history
  • Loading branch information
rubyboy committed May 4, 2016
1 parent ec1d0cb commit 5ee237f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/materialize-directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class MaterializeDirective implements AfterViewInit,DoCheck,OnChanges {

public ngOnChanges() {
if (this.isSelect()) {
setTimeout(() => this.ngDoCheck(), 10);
setTimeout(() => this.performLocalElementUpdates(), 10);
}
}

Expand Down

0 comments on commit 5ee237f

Please sign in to comment.