2015-08-21 04:14:29 +00:00
|
|
|
/* globals window, document */
|
2015-05-14 13:57:50 +00:00
|
|
|
( function() {
|
|
|
|
|
|
|
|
// Find the script element
|
|
|
|
var scripts = document.getElementsByTagName( "script" );
|
|
|
|
var script = scripts[ scripts.length - 1 ];
|
|
|
|
|
|
|
|
// Read the modules
|
|
|
|
var modules = script.getAttribute( "data-modules" );
|
|
|
|
var pathParts = window.location.pathname.split( "/" );
|
|
|
|
var effectsAll = [
|
2015-07-15 02:01:41 +00:00
|
|
|
"effects/effect-blind",
|
|
|
|
"effects/effect-bounce",
|
|
|
|
"effects/effect-clip",
|
|
|
|
"effects/effect-drop",
|
|
|
|
"effects/effect-explode",
|
|
|
|
"effects/effect-fade",
|
|
|
|
"effects/effect-fold",
|
|
|
|
"effects/effect-highlight",
|
|
|
|
"effects/effect-puff",
|
|
|
|
"effects/effect-pulsate",
|
|
|
|
"effects/effect-scale",
|
|
|
|
"effects/effect-shake",
|
|
|
|
"effects/effect-size",
|
|
|
|
"effects/effect-slide"
|
2015-05-14 13:57:50 +00:00
|
|
|
];
|
2015-07-15 01:54:33 +00:00
|
|
|
var widgets = [
|
2015-07-15 01:56:36 +00:00
|
|
|
"accordion",
|
2015-07-15 01:57:20 +00:00
|
|
|
"autocomplete",
|
2015-07-15 01:58:04 +00:00
|
|
|
"button",
|
2015-07-15 01:59:10 +00:00
|
|
|
"datepicker",
|
2015-07-15 01:59:40 +00:00
|
|
|
"dialog",
|
2015-07-15 02:03:06 +00:00
|
|
|
"draggable",
|
2015-07-15 02:03:37 +00:00
|
|
|
"droppable",
|
2015-07-15 02:04:22 +00:00
|
|
|
"menu",
|
2015-07-15 02:18:43 +00:00
|
|
|
"mouse",
|
2015-07-15 02:05:00 +00:00
|
|
|
"progressbar",
|
2015-07-15 02:05:54 +00:00
|
|
|
"resizable",
|
2015-07-15 02:06:31 +00:00
|
|
|
"selectable",
|
2015-07-15 02:08:11 +00:00
|
|
|
"selectmenu",
|
2015-07-15 02:08:51 +00:00
|
|
|
"slider",
|
2015-07-15 02:10:12 +00:00
|
|
|
"sortable",
|
2015-07-15 02:11:35 +00:00
|
|
|
"spinner",
|
2015-07-15 02:12:14 +00:00
|
|
|
"tabs",
|
|
|
|
"tooltip"
|
2015-07-15 01:54:33 +00:00
|
|
|
];
|
2015-07-21 19:54:14 +00:00
|
|
|
|
|
|
|
function getPath( module ) {
|
|
|
|
for ( var i = 0; i < widgets.length; i++ ) {
|
|
|
|
if ( widgets[ i ] === module ) {
|
|
|
|
return "widgets/" + module;
|
|
|
|
}
|
|
|
|
}
|
2015-07-15 02:01:41 +00:00
|
|
|
for ( var j = 0; j < effectsAll.length; j++ ) {
|
|
|
|
if ( module !== "effect" && effectsAll[ j ].indexOf( module ) !== -1 ) {
|
|
|
|
return "effects/" + module;
|
|
|
|
}
|
|
|
|
}
|
2015-07-21 19:54:14 +00:00
|
|
|
return module;
|
|
|
|
}
|
|
|
|
function fixPaths( modules ) {
|
|
|
|
for ( var i = 0; i < modules.length; i++ ) {
|
|
|
|
modules[ i ] = getPath( modules[ i ] );
|
|
|
|
}
|
|
|
|
return modules;
|
|
|
|
}
|
2015-05-14 13:57:50 +00:00
|
|
|
|
|
|
|
// Hide the page while things are loading to prevent a FOUC
|
|
|
|
document.documentElement.className = "demo-loading";
|
|
|
|
|
|
|
|
require.config( {
|
|
|
|
baseUrl: "../../ui",
|
|
|
|
paths: {
|
|
|
|
jquery: "../external/jquery/jquery",
|
|
|
|
external: "../external/"
|
|
|
|
},
|
|
|
|
shim: {
|
|
|
|
"external/globalize/globalize.culture.de-DE": [ "external/globalize/globalize" ],
|
|
|
|
"external/globalize/globalize.culture.ja-JP": [ "external/globalize/globalize" ]
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
// Replace effects all shortcut modules with all the effects modules
|
|
|
|
if ( modules && modules.indexOf( "effects-all" ) !== -1 ) {
|
|
|
|
modules = modules.replace( /effects-all/, effectsAll.join( " " ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
modules = modules ? modules.replace( /^\s+|\s+$/g, "" ).split( /\s+/ ) : [];
|
|
|
|
modules.push( pathParts[ pathParts.length - 2 ] );
|
2015-07-21 19:54:14 +00:00
|
|
|
modules = fixPaths( modules );
|
2015-05-14 13:57:50 +00:00
|
|
|
|
|
|
|
require( modules, function() {
|
|
|
|
var newScript = document.createElement( "script" );
|
|
|
|
|
|
|
|
document.documentElement.className = "";
|
|
|
|
|
|
|
|
newScript.text = "( function() { " + script.innerHTML + " } )();";
|
2015-07-21 14:55:41 +00:00
|
|
|
document.head.appendChild( newScript ).parentNode.removeChild( newScript );
|
2015-05-14 13:57:50 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
} )();
|