From 329416407e61afda86e14f28e518894472ffc5b6 Mon Sep 17 00:00:00 2001 From: Alib Date: Sat, 27 Mar 2010 15:02:42 +0100 Subject: css fix --- css/theme.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/css/theme.css b/css/theme.css index a0c2c74..1071118 100644 --- a/css/theme.css +++ b/css/theme.css @@ -444,6 +444,23 @@ div#jqt.landscape .toolbar > h1 { padding: 2px 10px; text-shadow: #000 0 1px 0; } +#jqt ul.edgetoedge li.sep a{ + background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,.5))); + color: #ff8300; + font-size: 16px; + margin: 0px 0 0 0; + padding: 2px 10px; + text-shadow: #000 0 1px 0; +} +#jqt ul.edgetoedge li.sep a.active{ + background-color: #ff8300; + color: #fff; + font-size: 16px; + margin: 0px 0 0 0; + padding: 2px 10px; + text-shadow: #000 0 1px 0; +} + #jqt ul.edgetoedge li em { font-weight: normal; font-style: normal; -- cgit v1.2.3 From 2cba29dcf5187c05df0648c5804dfde32266fd9a Mon Sep 17 00:00:00 2001 From: Alib Date: Sat, 27 Mar 2010 15:06:56 +0100 Subject: updated css --- css/theme.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/css/theme.css b/css/theme.css index 1071118..ced8938 100644 --- a/css/theme.css +++ b/css/theme.css @@ -445,19 +445,13 @@ div#jqt.landscape .toolbar > h1 { text-shadow: #000 0 1px 0; } #jqt ul.edgetoedge li.sep a{ - background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,.5))); color: #ff8300; font-size: 16px; - margin: 0px 0 0 0; - padding: 2px 10px; text-shadow: #000 0 1px 0; } #jqt ul.edgetoedge li.sep a.active{ background-color: #ff8300; color: #fff; - font-size: 16px; - margin: 0px 0 0 0; - padding: 2px 10px; text-shadow: #000 0 1px 0; } -- cgit v1.2.3 From 39bcbf4db4629aacc23116fb7a473eb44690c4bc Mon Sep 17 00:00:00 2001 From: Alib Date: Sat, 27 Mar 2010 17:41:53 +0100 Subject: corrected path for rec and videos --- js/istreamdev.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/js/istreamdev.js b/js/istreamdev.js index 4aae3f8..f36b907 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -452,7 +452,7 @@ function gen_streamchannel(channame,channumber) { } function gen_streamrec(folder,path) { - var dataString = "action=getRecInfo&rec=" + encodeURIComponent(path) + "/" + encodeURIComponent(folder); + var dataString = "action=getRecInfo&rec=" + encodeURIComponent(path); //Json call to get rec info $.getJSON("bin/backend.php", dataString, @@ -470,7 +470,7 @@ function gen_streamrec(folder,path) { } function gen_streamvid(filename,path) { - var dataString = "action=getVidInfo&file=" + encodeURIComponent(path) + "/" + encodeURIComponent(filename); + var dataString = "action=getVidInfo&file=" + encodeURIComponent(path); //Json call to get rec info $.getJSON("bin/backend.php", dataString, @@ -617,10 +617,12 @@ $('ul[rel="filelist"] li[class="arrow"] a').tap(function(event) { } else if ( type == "rec" ) { + var path = $(this).find('span[class=filepath]').attr('rel'); gen_streamrec(name,path); } else if ( type == "video" ) { + var path = $(this).find('span[class=filepath]').attr('rel'); gen_streamvid(name,path); } return false; @@ -691,10 +693,10 @@ function gen_browser(path,browser,name,foldertype) { $("#browser" + browser).find('ul').append('
  • ' + list.name + '
  • '); } else if (list.type == "rec") { - $("#browser" + browser).find('ul').append('
  • ' + list.name + '
  • '); + $("#browser" + browser).find('ul').append('
  • ' + list.name + '
  • '); } else if ( list.type == "video" ) { - $("#browser" + browser).find('ul').append('
  • ' + list.name + '
  • '); + $("#browser" + browser).find('ul').append('
  • ' + list.name + '
  • '); } else if ( list.type == "audio" ) { if ( list.trackname != "" ) { -- cgit v1.2.3