You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
472 B
JavaScript
28 lines
472 B
JavaScript
define("dijit/_base", [
|
|
"./main",
|
|
"./a11y", // used to be in dijit/_base/manager
|
|
"./WidgetSet", // used to be in dijit/_base/manager
|
|
"./_base/focus",
|
|
"./_base/manager",
|
|
"./_base/place",
|
|
"./_base/popup",
|
|
"./_base/scroll",
|
|
"./_base/sniff",
|
|
"./_base/typematic",
|
|
"./_base/wai",
|
|
"./_base/window"
|
|
], function(dijit){
|
|
|
|
// module:
|
|
// dijit/_base
|
|
|
|
/*=====
|
|
return {
|
|
// summary:
|
|
// Includes all the modules in dijit/_base
|
|
};
|
|
=====*/
|
|
|
|
return dijit._base;
|
|
});
|