Allan Poppe

Results 12 comments of Allan Poppe

@hliberato, search for line 589 on angular-facebook.js: `var src = '//connect.facebook.net/' + settings.locale + '/sdk.js'` Change it to: `var src = '//connect.facebook.net/' + settings.locale + '/all.js'` Also, I think we...

+1 Workaround: ``` ``` ``` @ViewChild('autoComplete') autoComplete: AutoCompleteComponent; onAutoCompleteChanges() { setTimeout(() => { if (!this.autoComplete.keyword) { this.form.get('...').setValue(null); } }, 500); } ``` `setTimeout` is very important here.