diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-23 19:36:24 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-23 19:36:24 +0100 |
commit | 85b5a9f4c49db6dbbe282e9e8ab60fbc074d6a52 (patch) | |
tree | 2140027c1fe137bb139f78d1d4f2715143a31922 /js/istreamdev.js | |
parent | 7d8bc8ba0454d704bb7be03909a31d0c01a4be1a (diff) | |
parent | c32c1785108597b3bb500ea7f85d2c63cef00359 (diff) | |
download | istreamdev-85b5a9f4c49db6dbbe282e9e8ab60fbc074d6a52.tar.gz istreamdev-85b5a9f4c49db6dbbe282e9e8ab60fbc074d6a52.tar.bz2 |
Merge branch 'jquery' of projects.vdr-developer.org:istreamdev into jquery
* 'jquery' of projects.vdr-developer.org:istreamdev:
added auth
removed auth temporarely
added auth
fixed default segmenter install path
removed logos in git
default max encoding to 3 .
corrected bug when returning back to home
Diffstat (limited to 'js/istreamdev.js')
-rw-r--r-- | js/istreamdev.js | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js index 1ce37e9..743eee0 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -95,6 +95,12 @@ function addAudiofiles() { $('#home_but').tap(function(event) {
event.preventDefault();
$(this).parents('div').find('a').unbind("tap");
+ $('#home').bind('pageAnimationEnd', function(event, info){
+ if (info.direction == 'in') {
+ $('#jqt div[rel="browser"]').remove();
+ $('#home').unbind('pageAnimationEnd');
+ }
+ });
jQT.goTo('#home','flip');
});
@@ -385,6 +391,7 @@ $('#streamchannel span.recButton a').tap(function(event) { gen_edittimer(id,name,active,channumber,channame,rec_date,starttime,endtime);
return false;
});
+
$('#streamrec span.streamButton a').tap(function(event) {
event.preventDefault();
json_start(this);
@@ -616,17 +623,6 @@ $('div[rel="browser"] a[class="back"]').tap(function(event) { $(this).parents('div[rel="browser"]').remove();
});
-$('div[rel="browser"] #home_but').tap(function(event) {
- event.preventDefault();
- $(this).parents('div[rel="browser"]').find('ul[rel="filelist"] li[class="arrow"] a').unbind("tap");
- $('#home').bind('pageAnimationEnd', function(event, info){
- $('#jqt div[rel="browser"]').remove();
- $('#home').unbind('pageAnimationEnd');
- });
-});
-
-
-
//Generate browser div according to type
function gen_browser(path,browser,name,foldertype) {
browser_template = '<div class="toolbar"></div>';
|