summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlib <aliboba@free.fr>2011-03-04 18:58:54 +0100
committerAlib <aliboba@free.fr>2011-03-04 18:58:54 +0100
commite339afb48098c150d15ba519bed62e2673deb4a7 (patch)
tree56122e631eeab92fee704824f2318dbbe8897b75
parent22585ff8fb58299573e068647a54b981c7254586 (diff)
downloadistreamdev-e339afb48098c150d15ba519bed62e2673deb4a7.tar.gz
istreamdev-e339afb48098c150d15ba519bed62e2673deb4a7.tar.bz2
added patch for better iPad support ( breaks logo icon on stream button, but useless on ios 4.2)
-rw-r--r--bin/session.php2
-rw-r--r--js/istreamdev.js8
2 files changed, 8 insertions, 2 deletions
diff --git a/bin/session.php b/bin/session.php
index 9930a3d..0e42d0e 100644
--- a/bin/session.php
+++ b/bin/session.php
@@ -326,7 +326,7 @@ function sessiongetstatus($session, $prevmsg)
}
// Check session creation timeout
- if ($checkstart && ((time() - $time) >= 10))
+ if ($checkstart && ((time() - $time) >= 15))
{
$status['status'] = "error";
$status['message'] = "Error: session could not start";
diff --git a/js/istreamdev.js b/js/istreamdev.js
index e5863c1..d442ed4 100644
--- a/js/istreamdev.js
+++ b/js/istreamdev.js
@@ -51,6 +51,11 @@ jQT = new $.jQTouch({
$(document).ready(function(e){
dataString = "action=getGlobals";
showStatus( 0,"Getting configuration data" );
+ if ( navigator.userAgent.match(/iPad/i)) {
+ is_ipad = true;
+ } else {
+ is_ipad = false;
+ }
$.getJSON("bin/backend.php",
dataString,
function(data){
@@ -599,7 +604,8 @@ function playvideo(session,name) {
streaming.find('ul[class="streamstatus"]').find('span[class="mode"]').html(message);
if ( status == "ready" || status == "error" ) {
streaming.find('#player').removeAttr("style");
- streaming.find('#player').html('<video id="videofeed" width="' + thumbwidth + '" height="' + thumbheight + '" poster="ram/session' + session + '/thumb.png?' + time + '" src="' + url + '" controls autoplay ></video><span rel="ready"></span>');
+ streaming.find('#player').html('<video id="videofeed" src="' + url + '" controls autoplay ></video><span rel="ready"></span>');
+
return false;
}
prevmsg = message;