Skip to content

Commit 2cb72ad

Browse files
committed
Fixed syntax of null test for jplayer#206 fix
1 parent 0b82804 commit 2cb72ad

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jPlayer",
3-
"version": "2.6.2",
3+
"version": "2.6.3",
44
"main": [
55
"./jquery.jplayer/jquery.jplayer.js",
66
"./skin/pink.flag/jplayer.pink.flag.css"

jplayer.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"html5",
1212
"streaming"
1313
],
14-
"version": "2.6.2",
14+
"version": "2.6.3",
1515
"author": {
1616
"name": "Mark J Panaghiston",
1717
"email": "markp@happyworm.com",

jquery.jplayer/jquery.jplayer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* http://opensource.org/licenses/MIT
88
*
99
* Author: Mark J Panaghiston
10-
* Version: 2.6.2
10+
* Version: 2.6.3
1111
* Date: 30th May 2014
1212
*/
1313

@@ -437,7 +437,7 @@
437437
if(f) {
438438
// What generated the key press?
439439
if(typeof pageFocus !== 'undefined') {
440-
if(typeof pageFocus !== 'null' && pageFocus.nodeName.toUpperCase() !== "BODY") {
440+
if(pageFocus !== null && pageFocus.nodeName.toUpperCase() !== "BODY") {
441441
ignoreKey = true;
442442
}
443443
} else {
@@ -479,7 +479,7 @@
479479
$.jPlayer.prototype = {
480480
count: 0, // Static Variable: Change it via prototype.
481481
version: { // Static Object
482-
script: "2.6.2",
482+
script: "2.6.3",
483483
needFlash: "2.6.0",
484484
flash: "unknown"
485485
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jplayer",
3-
"version": "2.6.2",
3+
"version": "2.6.3",
44
"description": "The jQuery HTML5 Audio / Video Library",
55
"homepage": "http://www.jplayer.org/",
66
"keywords": [

0 commit comments

Comments
 (0)