summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/istreamdev.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js
index f36b907..c43af22 100644
--- a/js/istreamdev.js
+++ b/js/istreamdev.js
@@ -463,7 +463,7 @@ function gen_streamrec(folder,path) {
$("#streamrec").find('span[class="name_now"]').html( program.name );
$("#streamrec").find('span[class="epgtime_now"]').html( 'Recorded: ' + program.recorded );
$("#streamrec").find('span[class="desc_now"]').html( program.desc );
- $("#streamrec").find('span[rel="url"]').html( path + "/" + folder );
+ $("#streamrec").find('span[rel="url"]').html(path);
$("#streamrec").find('span[rel="type"]').html('rec');
json_complete('#streamrec','cube');
});
@@ -618,6 +618,7 @@ $('ul[rel="filelist"] li[class="arrow"] a').tap(function(event) {
else if ( type == "rec" )
{
var path = $(this).find('span[class=filepath]').attr('rel');
+ alert(path);
gen_streamrec(name,path);
}
else if ( type == "video" )