I'm using getUseMedia function in my app. Every time I open Firefox permission popup appears. There is no always allow option.
According to the Bugzilla the feature is already implemented at Firefox 30 - current version is 43.
I'm using getUserMedia like this:
    navigator.getUserMedia = (navigator.getUserMedia ||
    navigator.webkitGetUserMedia ||
    navigator.mozGetUserMedia ||
    navigator.msGetUserMedia);
Is it right? Why I can't select allow always option?
