You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The static function is available on the instance navigator.mediaDevices as well. But we should probably remove the "static" keyword there since we have the singelton.
If getSupportedContraints is "static" as in the current draft, all the examples need to be fixed.
For example,
var supports = navigator.mediaDevices.getSupportedConstraints("video");
should be changed to
var supports = MediaDevices.getSupportedConstraints("video");
The text was updated successfully, but these errors were encountered: