Fix inverted boolean returns
This commit is contained in:
parent
b426b6e2bf
commit
8f694d7d1c
2 changed files with 12 additions and 12 deletions
|
@ -166,7 +166,7 @@ function supportsHtmlMediaAutoplay() {
|
|||
return true;
|
||||
}
|
||||
|
||||
return !!browser.mobile;
|
||||
return !browser.mobile;
|
||||
}
|
||||
|
||||
function supportsCue() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue