24 lines
512 B
JavaScript
24 lines
512 B
JavaScript
|
var components = {
|
||
|
"packages": [
|
||
|
{
|
||
|
"name": "jplayer",
|
||
|
"main": "jplayer-built.js"
|
||
|
}
|
||
|
],
|
||
|
"shim": {
|
||
|
"jplayer": {
|
||
|
"deps": [
|
||
|
"jquery"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"baseUrl": "components"
|
||
|
};
|
||
|
if (typeof require !== "undefined" && require.config) {
|
||
|
require.config(components);
|
||
|
} else {
|
||
|
var require = components;
|
||
|
}
|
||
|
if (typeof exports !== "undefined" && typeof module !== "undefined") {
|
||
|
module.exports = components;
|
||
|
}
|