source fixx?
styl3R opened this issue · 1 comments
styl3R commented
hi,
i see on the download source the message ->
Since we cannot run PHP code here, the download functionality is disabled for this demo version.
Note: You can find the source code of this demo in the gh-pages branch.
Can you help me to remove the message and convert with your script - i have downloadet the version but i see only this shit :(
enderkus commented
Hi open the scripts.js file is rewrite 91 line
// If there is any input, show a confirm dialog before resetting the session.
if($("input[name='yturl']").val() !== "") {
$.confirm({
'title' : 'Start new Download',
'message' : 'Choose your download: <br />' +
'<strong>Video</strong>: Download the video file.<br />' +
'<strong>Audio</strong>: Convert video and download soundtrack as mp3 file.',
'buttons' : {
// Disabled for GitHub demo, since we can not run scripts.
'Audio' : {'class' : 'blue', 'action': function() { do_download("audio"); }},
'Video' : {'class' : 'red', 'action': function() { do_download("video"); }}
}
});
}
return false;
});