| author | hamidouk |
| Fri, 21 Oct 2011 17:27:04 +0200 | |
| branch | popcorn-port |
| changeset 123 | 58bb8ccea9a8 |
| parent 55 | a5440e1a18a8 |
| child 236 | 6770c85c9e56 |
| permissions | -rw-r--r-- |
| 31 | 1 |
/* site.js - all our site-dependent config : player chrome, cdn locations, etc...*/ |
2 |
||
|
55
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
3 |
/* |
| 31 | 4 |
IriSP.lib = { |
5 |
jQuery:"http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js", |
|
6 |
jQueryUI:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js", |
|
7 |
jQueryToolTip:"http://cdn.jquerytools.org/1.2.4/all/jquery.tools.min.js", |
|
8 |
swfObject:"http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js", |
|
9 |
cssjQueryUI:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/base/jquery-ui.css" |
|
10 |
}; |
|
|
55
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
11 |
*/ |
|
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
12 |
|
|
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
13 |
IriSP.lib = { |
|
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
14 |
jQuery:"http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js", |
|
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
15 |
jQueryUI:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.js", |
|
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
16 |
jQueryToolTip:"http://cdn.jquerytools.org/1.2.4/all/jquery.tools.min.js", |
|
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
17 |
swfObject:"http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js", |
|
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
18 |
cssjQueryUI:"http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/themes/base/jquery-ui.css" |
|
a5440e1a18a8
A bunch of changes to make the code use popcorn. Bumped the version of jwplayer
hamidouk
parents:
38
diff
changeset
|
19 |
}; |
| 31 | 20 |
|
21 |
//Player Configuration |
|
22 |
IriSP.config = undefined; |
|
23 |
IriSP.configDefault = { |
|
24 |
metadata:{ |
|
25 |
format:'cinelab', |
|
26 |
src:'', |
|
27 |
load:'jsonp' |
|
28 |
}, |
|
29 |
gui:{ |
|
30 |
width:650, |
|
31 |
height:0, |
|
32 |
mode:'radio', |
|
33 |
container:'LdtPlayer', |
|
34 |
debug:false, |
|
35 |
css:'../src/css/LdtPlayer.css' |
|
36 |
}, |
|
37 |
player:{ |
|
38 |
type:'jwplayer', |
|
39 |
src:'../res/swf/player.swf', |
|
40 |
params:{ |
|
41 |
allowfullscreen:"true", |
|
42 |
allowscriptaccess:"always", |
|
43 |
wmode:"transparent" |
|
44 |
}, |
|
45 |
flashvars:{ |
|
46 |
streamer:"streamer", |
|
47 |
file:"file", |
|
48 |
live:"true", |
|
49 |
autostart:"false", |
|
50 |
controlbar:"none", |
|
51 |
playerready:"IriSP.playerReady" |
|
52 |
}, |
|
53 |
attributes:{ |
|
54 |
id:"Ldtplayer1", |
|
55 |
name:"Ldtplayer1" |
|
56 |
} |
|
57 |
}, |
|
58 |
module:null |
|
59 |
}; |
|
60 |