control-freak-ide/Code/client/build/xnode/xace/run.js.uncompressed.js
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

33 lines
2.1 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

define("xace/run", ["dojo","dijit","dojox"], function(dojo,dijit,dojox){
/**
* This file is used to reconfigure parts of the loader at runtime for this application. Weve put this extra
* configuration in a separate file, instead of adding it directly to index.html, because it contains options that
* can be shared if the application is run on both the client and the server.
*
* If you arent planning on running your app on both the client and the server, you could easily move this
* configuration into index.html (as a dojoConfig object) if it makes your life easier.
*/
require({
// The base path for all packages and modules. If you don't provide this, baseUrl defaults to the directory
// that contains dojo.js. Since all packages are in the root, we just leave it blank. (If you change this, you
// will also need to update app.profile.js).
/*baseUrl: '../',*/
// A list of packages to register. Strictly speaking, you do not need to register any packages,
// but you can't require "app" and get app/main.js if you do not register the "app" package (the loader will look
// for a module at <baseUrl>/app.js instead). Unregistered packages also cannot use the packageMap feature, which
// might be important to you if you need to relocate dependencies. TL;DR, register all your packages all the time:
// it will make your life easier.
packages: [
// If you are registering a package that has an identical name and location, you can just pass a string
// instead, and it will configure it using that string for both the "name" and "location" properties. Handy!
'xideve'
],
// This is a hack. In order to allow app/main and app/run to be built together into a single file, a cache key needs
// to exist here in order to force the loader to actually process the other modules in the file. Without this hack,
// the loader will think that code for app/main has not been loaded yet and will try to fetch it again, resulting in
// a needless extra HTTP request.
cache: {}
// Require 'app'. This loads the main application file, app/main.js.
}, ['xideve']);});