| author | ymh <ymh.work@gmail.com> |
| Fri, 02 Oct 2015 11:27:17 +0200 | |
| changeset 1068 | 7623f9af9272 |
| parent 1033 | c20df1c080e6 |
| child 1072 | ac1eacb3aa33 |
| permissions | -rw-r--r-- |
| 1000 | 1 |
/* Start of defaults.js */ |
2 |
||
| 842 | 3 |
IriSP.language = 'en'; |
4 |
||
5 |
IriSP.libFiles = { |
|
6 |
defaultDir : "js/libs/", |
|
7 |
inDefaultDir : { |
|
| 882 | 8 |
underscore : "underscore-min.js", |
|
875
43629caa77bc
Big refactoring of widget files + started migration of segmentwidget
veltr
parents:
874
diff
changeset
|
9 |
Mustache : "mustache.js", |
| 842 | 10 |
jQuery : "jquery.min.js", |
11 |
jQueryUI : "jquery-ui.min.js", |
|
12 |
swfObject : "swfobject.js", |
|
13 |
cssjQueryUI : "jquery-ui.css", |
|
| 883 | 14 |
popcorn : "popcorn-complete.min.js", |
| 842 | 15 |
jwplayer : "jwplayer.js", |
| 882 | 16 |
raphael : "raphael-min.js", |
| 910 | 17 |
tracemanager : "tracemanager.js", |
| 917 | 18 |
jwPlayerSWF : "player.swf", |
| 927 | 19 |
json : "json2.js", |
20 |
zeroClipboardJs: "ZeroClipboard.js", |
|
| 938 | 21 |
zeroClipboardSwf: "ZeroClipboard.swf", |
22 |
backbone: "backbone.js", |
|
23 |
backboneRelational: "backbone-relational.js", |
|
24 |
paper: "paper.js", |
|
25 |
jqueryMousewheel: "jquery.mousewheel.min.js", |
|
|
1068
7623f9af9272
merge pull request #3 from O. Auber
ymh <ymh.work@gmail.com>
parents:
1033
diff
changeset
|
26 |
splitter: "jquery.touchsplitter.js", |
|
7623f9af9272
merge pull request #3 from O. Auber
ymh <ymh.work@gmail.com>
parents:
1033
diff
changeset
|
27 |
cssSplitter: "jquery.touchsplitter.css", |
| 997 | 28 |
renkanPublish: "renkan.js", |
| 966 | 29 |
processing: "processing-1.3.6.min.js", |
| 1033 | 30 |
recordMicSwf: "record_mic.swf", |
31 |
mousetrap: "mousetrap.min.js", |
|
32 |
mousetrapGlobal: "mousetrap-global-bind.js" |
|
| 842 | 33 |
}, |
34 |
locations : { |
|
| 930 | 35 |
// use to define locations outside default_dir |
| 842 | 36 |
}, |
37 |
cdn : { |
|
| 930 | 38 |
jQuery : "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js", |
39 |
jQueryUI : "http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.22/jquery-ui.min.js", |
|
| 842 | 40 |
swfObject : "http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js", |
| 930 | 41 |
cssjQueryUI : "http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.22/themes/ui-lightness/jquery-ui.css", |
42 |
underscore : "http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.3/underscore-min.js", |
|
43 |
Mustache : "http://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.5.0-dev/mustache.min.js", |
|
44 |
raphael : "http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js", |
|
| 986 | 45 |
json : "http://cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js", |
46 |
popcorn: "http://cdn.popcornjs.org/code/dist/popcorn-complete.min.js" |
|
| 842 | 47 |
}, |
48 |
useCdn : false |
|
| 1000 | 49 |
}; |
| 842 | 50 |
|
|
875
43629caa77bc
Big refactoring of widget files + started migration of segmentwidget
veltr
parents:
874
diff
changeset
|
51 |
IriSP.widgetsDir = 'widgets'; |
|
43629caa77bc
Big refactoring of widget files + started migration of segmentwidget
veltr
parents:
874
diff
changeset
|
52 |
|
| 882 | 53 |
IriSP.widgetsRequirements = { |
| 958 | 54 |
PopcornPlayer: { |
55 |
noCss: true, |
|
56 |
requires: [ "popcorn" ] |
|
57 |
}, |
|
| 986 | 58 |
HtmlPlayer: { |
59 |
noCss: true |
|
60 |
}, |
|
| 958 | 61 |
JwpPlayer: { |
62 |
noCss: true, |
|
| 959 | 63 |
requires: [ "jwplayer" ] |
64 |
}, |
|
65 |
DailymotionPlayer: { |
|
66 |
noCss: true, |
|
67 |
requires: [ "swfObject" ] |
|
| 958 | 68 |
}, |
| 980 | 69 |
AdaptivePlayer: { |
70 |
noCss: true |
|
71 |
}, |
|
| 965 | 72 |
AutoPlayer: { |
73 |
noCss: true |
|
74 |
}, |
|
| 966 | 75 |
AnnotationsList: { |
76 |
requires: [ "jwplayer" ] |
|
77 |
}, |
|
| 882 | 78 |
Sparkline: { |
79 |
noCss: true, |
|
| 927 | 80 |
requires: [ "raphael" ] |
| 882 | 81 |
}, |
82 |
Arrow: { |
|
83 |
noCss: true, |
|
| 927 | 84 |
requires: [ "raphael" ] |
| 882 | 85 |
}, |
86 |
Mediafragment: { |
|
87 |
noCss: true |
|
88 |
}, |
|
89 |
Trace : { |
|
90 |
noCss: true, |
|
| 927 | 91 |
requires: [ "tracemanager" ] |
| 926 | 92 |
}, |
| 960 | 93 |
Slideshare: { |
| 927 | 94 |
requires: [ "swfObject" ] |
95 |
}, |
|
96 |
Social: { |
|
97 |
requires: [ "zeroClipboardJs" ] |
|
| 938 | 98 |
}, |
99 |
Renkan: { |
|
100 |
requires: [ "backbone", "backboneRelational", "paper", "jqueryMousewheel", "renkanPublish" ] |
|
| 964 | 101 |
}, |
102 |
KnowledgeConcierge: { |
|
103 |
requires: [ "processing" ] |
|
| 982 | 104 |
}, |
105 |
MultiSegments: { |
|
106 |
noCss: true |
|
| 1033 | 107 |
}, |
108 |
SlideVideoPlayer: { |
|
109 |
requires: [ "jQuery", "jQueryUI", "splitter" ] |
|
110 |
}, |
|
111 |
Shortcuts: { |
|
112 |
requires: [ "mousetrap", "mousetrapGlobal" ] |
|
| 927 | 113 |
} |
| 1000 | 114 |
}; |
| 882 | 115 |
|
| 868 | 116 |
IriSP.guiDefaults = { |
|
1068
7623f9af9272
merge pull request #3 from O. Auber
ymh <ymh.work@gmail.com>
parents:
1033
diff
changeset
|
117 |
width : 640, |
| 868 | 118 |
container : 'LdtPlayer', |
|
1001
3210bf928a11
Enabled loading widgets without the widgeting framework
veltr
parents:
1000
diff
changeset
|
119 |
spacer_div_height : 0, |
|
3210bf928a11
Enabled loading widgets without the widgeting framework
veltr
parents:
1000
diff
changeset
|
120 |
widgets: [] |
| 1000 | 121 |
}; |
122 |
||
123 |
/* End of defaults.js */ |