Skip to content

Commit ef5b584

Browse files
committed
Updated popcorn plugin with new cdn urls
1 parent da213d7 commit ef5b584

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

dist/popcorn/popcorn.jplayer.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@
77
* http://opensource.org/licenses/MIT
88
*
99
* Author: Mark J Panaghiston
10-
* Version: 1.1.5
11-
* Date: 11th November 2014
10+
* Version: 1.1.6
11+
* Date: 27th November 2014
1212
*
1313
* For Popcorn Version: 1.3
14-
* For jPlayer Version: 2.8.0
14+
* For jPlayer Version: 2.9.0
1515
* Requires: jQuery 1.7+
1616
* Note: jQuery dependancy cannot be removed since jPlayer 2 is a jQuery plugin. Use of jQuery will be kept to a minimum.
1717
*/
1818

1919
(function(Popcorn) {
2020

2121
var JQUERY_SCRIPT = '//code.jquery.com/jquery-1.11.1.min.js', // Used if jQuery not already present.
22-
JPLAYER_SCRIPT = '//code.jplayer.org/2.8.0/jquery.jplayer.min.js', // Used if jPlayer not already present.
23-
JPLAYER_SWFPATH = '//code.jplayer.org/2.8.0/jquery.jplayer.swf', // Used if not specified in jPlayer options via SRC Object.
22+
JPLAYER_SCRIPT = '//code.jplayer.org/2.9.0/jplayer/jquery.jplayer.min.js', // Used if jPlayer not already present.
23+
JPLAYER_SWFPATH = '//code.jplayer.org/2.9.0/jplayer/jquery.jplayer.swf', // Used if not specified in jPlayer options via SRC Object.
2424
SOLUTION = 'html,flash', // The default solution option.
2525
DEBUG = false, // Decided to leave the debugging option and console output in for the time being. Overhead is trivial.
2626
jQueryDownloading = false, // Flag to stop multiple instances from each pulling in jQuery, thus corrupting it.
2727
jPlayerDownloading = false, // Flag to stop multiple instances from each pulling in jPlayer, thus corrupting it.
2828
format = { // Duplicate of jPlayer 2.5.0 object, to avoid always requiring jQuery and jPlayer to be loaded before performing the _canPlayType() test.
2929
mp3: {
30-
codec: 'audio/mpeg;',
30+
codec: 'audio/mpeg',
3131
flashCanPlay: true,
3232
media: 'audio'
3333
},

dist/popcorn/popcorn.jplayer.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/javascript/popcorn/popcorn.jplayer.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@
77
* http://opensource.org/licenses/MIT
88
*
99
* Author: Mark J Panaghiston
10-
* Version: 1.1.5
11-
* Date: 11th November 2014
10+
* Version: 1.1.6
11+
* Date: 27th November 2014
1212
*
1313
* For Popcorn Version: 1.3
14-
* For jPlayer Version: 2.8.0
14+
* For jPlayer Version: 2.9.0
1515
* Requires: jQuery 1.7+
1616
* Note: jQuery dependancy cannot be removed since jPlayer 2 is a jQuery plugin. Use of jQuery will be kept to a minimum.
1717
*/
1818

1919
(function(Popcorn) {
2020

2121
var JQUERY_SCRIPT = '//code.jquery.com/jquery-1.11.1.min.js', // Used if jQuery not already present.
22-
JPLAYER_SCRIPT = '//code.jplayer.org/2.8.0/jquery.jplayer.min.js', // Used if jPlayer not already present.
23-
JPLAYER_SWFPATH = '//code.jplayer.org/2.8.0/jquery.jplayer.swf', // Used if not specified in jPlayer options via SRC Object.
22+
JPLAYER_SCRIPT = '//code.jplayer.org/2.9.0/jplayer/jquery.jplayer.min.js', // Used if jPlayer not already present.
23+
JPLAYER_SWFPATH = '//code.jplayer.org/2.9.0/jplayer/jquery.jplayer.swf', // Used if not specified in jPlayer options via SRC Object.
2424
SOLUTION = 'html,flash', // The default solution option.
2525
DEBUG = false, // Decided to leave the debugging option and console output in for the time being. Overhead is trivial.
2626
jQueryDownloading = false, // Flag to stop multiple instances from each pulling in jQuery, thus corrupting it.
2727
jPlayerDownloading = false, // Flag to stop multiple instances from each pulling in jPlayer, thus corrupting it.
2828
format = { // Duplicate of jPlayer 2.5.0 object, to avoid always requiring jQuery and jPlayer to be loaded before performing the _canPlayType() test.
2929
mp3: {
30-
codec: 'audio/mpeg;',
30+
codec: 'audio/mpeg',
3131
flashCanPlay: true,
3232
media: 'audio'
3333
},

0 commit comments

Comments
 (0)