Skip to content

Commit

Permalink
Fixed noFullWindow RegExp options for msie, ipad and android_pad.
Browse files Browse the repository at this point in the history
  • Loading branch information
thepag committed Nov 19, 2012
1 parent a862d8e commit 252d2a1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jquery.jplayer/jquery.jplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* - http://www.gnu.org/copyleft/gpl.html
*
* Author: Mark J Panaghiston
* Version: 2.2.14
* Version: 2.2.15
* Date: 19th November 2012
*/

Expand Down Expand Up @@ -390,7 +390,7 @@
$.jPlayer.prototype = {
count: 0, // Static Variable: Change it via prototype.
version: { // Static Object
script: "2.2.14",
script: "2.2.15",
needFlash: "2.2.0",
flash: "unknown"
},
Expand Down Expand Up @@ -449,11 +449,11 @@
// Phone and tablet browsers can have problems with the controls disappearing.
},
noFullWindow: {
msie: /msie [0-6]/,
ipad: /ipad.*?os [0-4]/,
msie: /msie [0-6]\./,
ipad: /ipad.*?os [0-4]\./,
iphone: /iphone/,
ipod: /ipod/,
android_pad: /android [0-3](?!.*?mobile)/,
android_pad: /android [0-3]\.(?!.*?mobile)/,
android_phone: /android.*?mobile/,
blackberry: /blackberry/,
windows_ce: /windows ce/,
Expand Down

0 comments on commit 252d2a1

Please sign in to comment.