navigator.mediaDevices.getUserMedia({
audio: true
}).then(function (stream) {
this.gotStream(stream);
}.bind(this)).catch(function (e) {
console.log(e);
alert('Vi kunne ikke få fat i din microfon. Hvis du kom til at svare nej til popupen ryd venligst din browsers cache og prøv igen!');
});