CC-4478: Library: audio preview check should be skipped if file does not exist
-fixed
This commit is contained in:
parent
0241eb4714
commit
8cae11d588
|
@ -366,7 +366,7 @@ var AIRTIME = (function(AIRTIME){
|
||||||
//and verify whether they can be previewed by the browser or not. If not
|
//and verify whether they can be previewed by the browser or not. If not
|
||||||
//then the playlist element is greyed out
|
//then the playlist element is greyed out
|
||||||
mod.validatePlaylistElements = function(){
|
mod.validatePlaylistElements = function(){
|
||||||
$.each($(".big_play"), function(index, value){
|
$.each($(".big_play ui-icon-play"), function(index, value){
|
||||||
if ($(value).attr('blockId') === undefined) {
|
if ($(value).attr('blockId') === undefined) {
|
||||||
var mime = $(value).attr("data-mime-type");
|
var mime = $(value).attr("data-mime-type");
|
||||||
if (isAudioSupported(mime)) {
|
if (isAudioSupported(mime)) {
|
||||||
|
|
Loading…
Reference in New Issue