CC-4542: Playlists containing dynamic smart blocks cannot be previewed
- fixed
This commit is contained in:
parent
75db11d780
commit
67ca0db4c8
|
@ -21,7 +21,7 @@ if ($item['type'] == 2) {
|
||||||
<span class="ui-icon ui-icon-play"></span>
|
<span class="ui-icon ui-icon-play"></span>
|
||||||
</div>
|
</div>
|
||||||
<?php elseif ($item['type'] == 2 && $item['exists']): ?>
|
<?php elseif ($item['type'] == 2 && $item['exists']): ?>
|
||||||
<div class="big_play" blockId="<?php echo $item["item_id"]; ?>">
|
<div class="big_play" blockId="<?php echo $item["item_id"]; ?>" blocktype="<?php echo $staticBlock?"static":"dynamic"?>">
|
||||||
<span class="ui-icon ui-icon-play"></span>
|
<span class="ui-icon ui-icon-play"></span>
|
||||||
</div>
|
</div>
|
||||||
<?php else:?>
|
<?php else:?>
|
||||||
|
|
|
@ -393,6 +393,31 @@ var AIRTIME = (function(AIRTIME){
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if ($(value).attr('blocktype') === 'dynamic') {
|
||||||
|
$(value).attr("class", "big_play_disabled dark_class");
|
||||||
|
$(value).qtip({
|
||||||
|
content: 'Dynamic block is not previewable',
|
||||||
|
show: 'mouseover',
|
||||||
|
hide: {
|
||||||
|
delay: 500,
|
||||||
|
fixed: true
|
||||||
|
},
|
||||||
|
style: {
|
||||||
|
border: {
|
||||||
|
width: 0,
|
||||||
|
radius: 4
|
||||||
|
},
|
||||||
|
classes: "ui-tooltip-dark ui-tooltip-rounded"
|
||||||
|
},
|
||||||
|
position: {
|
||||||
|
my: "left bottom",
|
||||||
|
at: "right center"
|
||||||
|
},
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
$(value).bind("click", openAudioPreview);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue