summaryrefslogtreecommitdiff
path: root/js/dojo-1.6/dijit/lib/main.xd.js
blob: c0a2733d7b49632fd0e118b1c4b450b58dd72310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
	Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
	Available via Academic Free License >= 2.1 OR the modified BSD license.
	see: http://dojotoolkit.org/license for details
*/


dojo._xdResourceLoaded(function(dojo, dijit, dojox){
return {
defineResource: function(dojo, dijit, dojox){// AMD module id = dijit
//
// This is a package main module for the dijit package. The dijit package is somewhat unusual
// in that is it currently constructed to just provide an empty object.
//

// for now, we publish dijit into the global namespace because so many tests and apps expect it.
define(["dojo"], function(dojo) {
	// the current dojo bootstrap defines dijit; this may change and this module provides a little
	// future-proof with the disjunction.
	dijit= dojo._dijit || {};
	return dijit;
});

}};});