Skip to content

Commit

Permalink
don't use bitwise or
Browse files Browse the repository at this point in the history
  • Loading branch information
mfairchild365 committed Apr 24, 2015
1 parent 1fdc84b commit 2e387e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -3032,7 +3032,7 @@ if (typeof jQuery != 'undefined') {
loading.show();
controls.find('.mejs-time-buffering').show();
// Firing the 'canplay' event after a timeout which isn't getting fired on some Android 4.1 devices (https://github.com/johndyer/mediaelement/issues/1305)
if (mejs.MediaFeatures.isAndroid | mejs.MediaFeatures.isFirefox) {
if (mejs.MediaFeatures.isAndroid || mejs.MediaFeatures.isFirefox) {
media.canplayTimeout = window.setTimeout(
function() {
if (document.createEvent) {
Expand Down

0 comments on commit 2e387e0

Please sign in to comment.