Add Download button
This commit is contained in:
parent
8b795a0a7d
commit
bf838ed5e4
@ -873,16 +873,22 @@ $('a.bf').click(function(e) {
|
||||
type: type
|
||||
});
|
||||
|
||||
$('#playDL').attr('download', file.replace(/.*\//, ''));
|
||||
|
||||
if (type == 'ts') {
|
||||
if (opt.attr('odencd') != 0) {
|
||||
/* encrypted: link to be enabled once populated */
|
||||
$('#playDL').disable();
|
||||
/* ... but if no DLNA never Play */
|
||||
if (opt.attr('dlna') != 1) $('#play').disable();
|
||||
} else {
|
||||
/* link unencrypted file directly */
|
||||
$('#playDL').attr('href', file);
|
||||
}
|
||||
} else {
|
||||
/* generic: enable Play once media file is parsed */
|
||||
$('#play').disable();
|
||||
$('#playDL').attr('href', file);
|
||||
}
|
||||
|
||||
$dialog.dialog('open');
|
||||
|
Loading…
Reference in New Issue
Block a user