|
7 | 7 | * http://opensource.org/licenses/MIT |
8 | 8 | * |
9 | 9 | * Author: Mark J Panaghiston |
10 | | - * Version: 1.1.5 |
11 | | - * Date: 11th November 2014 |
| 10 | + * Version: 1.1.6 |
| 11 | + * Date: 27th November 2014 |
12 | 12 | * |
13 | 13 | * For Popcorn Version: 1.3 |
14 | | - * For jPlayer Version: 2.8.0 |
| 14 | + * For jPlayer Version: 2.9.0 |
15 | 15 | * Requires: jQuery 1.7+ |
16 | 16 | * Note: jQuery dependancy cannot be removed since jPlayer 2 is a jQuery plugin. Use of jQuery will be kept to a minimum. |
17 | 17 | */ |
18 | 18 |
|
19 | 19 | (function(Popcorn) { |
20 | 20 |
|
21 | 21 | 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. |
24 | 24 | SOLUTION = 'html,flash', // The default solution option. |
25 | 25 | DEBUG = false, // Decided to leave the debugging option and console output in for the time being. Overhead is trivial. |
26 | 26 | jQueryDownloading = false, // Flag to stop multiple instances from each pulling in jQuery, thus corrupting it. |
27 | 27 | jPlayerDownloading = false, // Flag to stop multiple instances from each pulling in jPlayer, thus corrupting it. |
28 | 28 | format = { // Duplicate of jPlayer 2.5.0 object, to avoid always requiring jQuery and jPlayer to be loaded before performing the _canPlayType() test. |
29 | 29 | mp3: { |
30 | | - codec: 'audio/mpeg;', |
| 30 | + codec: 'audio/mpeg', |
31 | 31 | flashCanPlay: true, |
32 | 32 | media: 'audio' |
33 | 33 | }, |
|
0 commit comments