Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
This commit is contained in:
@@ -16,12 +16,12 @@
|
||||
|
||||
<form id="pluginUpdatesForm">
|
||||
|
||||
<table id="tblPluginUpdates">
|
||||
<table id="tblPluginUpdates" class="ui-responsive table-stroke" data-role="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th>Automatic updates</th>
|
||||
<th>Update level</th>
|
||||
<th data-priority="2">Automatic updates</th>
|
||||
<th data-priority="3">Update level</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="tbodyPluginUpdates"></tbody>
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
var media = MediaPlayer.testableAudioElement;
|
||||
|
||||
if (media.canPlayType) {
|
||||
return media.canPlayType('audio/mpeg').replace(/no/, '') || media.canPlayType('audio/aac').replace(/no/, '');
|
||||
|
||||
return media.canPlayType('audio/mpeg').replace(/no/, '') || media.canPlayType('audio/webm').replace(/no/, '') || media.canPlayType('audio/aac').replace(/no/, '') || media.canPlayType('audio/ogg').replace(/no/, '');
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user