Skip to content

Commit

Permalink
Fixed syntax of null test for #206 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thepag committed May 30, 2014
1 parent 0b82804 commit 2cb72ad
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "jPlayer",
"version": "2.6.2",
"version": "2.6.3",
"main": [
"./jquery.jplayer/jquery.jplayer.js",
"./skin/pink.flag/jplayer.pink.flag.css"
Expand Down
2 changes: 1 addition & 1 deletion jplayer.jquery.json
Expand Up @@ -11,7 +11,7 @@
"html5",
"streaming"
],
"version": "2.6.2",
"version": "2.6.3",
"author": {
"name": "Mark J Panaghiston",
"email": "markp@happyworm.com",
Expand Down
6 changes: 3 additions & 3 deletions jquery.jplayer/jquery.jplayer.js
Expand Up @@ -7,7 +7,7 @@
* http://opensource.org/licenses/MIT
*
* Author: Mark J Panaghiston
* Version: 2.6.2
* Version: 2.6.3
* Date: 30th May 2014
*/

Expand Down Expand Up @@ -437,7 +437,7 @@
if(f) {
// What generated the key press?
if(typeof pageFocus !== 'undefined') {
if(typeof pageFocus !== 'null' && pageFocus.nodeName.toUpperCase() !== "BODY") {
if(pageFocus !== null && pageFocus.nodeName.toUpperCase() !== "BODY") {
ignoreKey = true;
}
} else {
Expand Down Expand Up @@ -479,7 +479,7 @@
$.jPlayer.prototype = {
count: 0, // Static Variable: Change it via prototype.
version: { // Static Object
script: "2.6.2",
script: "2.6.3",
needFlash: "2.6.0",
flash: "unknown"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jplayer",
"version": "2.6.2",
"version": "2.6.3",
"description": "The jQuery HTML5 Audio / Video Library",
"homepage": "http://www.jplayer.org/",
"keywords": [
Expand Down

0 comments on commit 2cb72ad

Please sign in to comment.