Naehs

Results 6 comments of Naehs

I confirm that now it's working, but i seems toi have some trouble on devices increments. I mean that i have 3 microphone devices, the list je showed like :...

I found the issue. In Android Chrome, restore the grants for microphone and camera. Refresh the page, before accepts the permissions you will see the increments trouble. Loïc.

Thanks guys ! I will try it later. In the case where i want to call a function inside the ready function or a normal function, how it's work ?...

Hi guys ! I tried this after your recommendation : ``` ruby toastMessage.show({horizontalAlign: 'right', verticalAlign: 'top', duration: 5000, text: this.async(function() { this.localize('login_failed'); },100)}); ``` And I still have : ```...

@davebaol Same error... Note that i'm in the ready function : ``` ruby ready: function() { ... loginForm.addEventListener('iron-form-response', function(event) { if (event.detail.response.error) { this.async((function() { toastMessage.show({ horizontalAlign: 'right', verticalAlign: 'top',...

@davebaol With this : ``` ruby ready: function() { ... loginForm.addEventListener('iron-form-response', function(event) { if (event.detail.response.error) { this.async((function() { toastMessage.show({ horizontalAlign: 'right', verticalAlign: 'top', duration: 5000, text: this.localize('login_failed') }); }).bind(this), 100);...