summaryrefslogtreecommitdiff
path: root/lib/dijit/lib/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dijit/lib/main.js')
-rw-r--r--lib/dijit/lib/main.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/dijit/lib/main.js b/lib/dijit/lib/main.js
deleted file mode 100644
index 28f1164e9..000000000
--- a/lib/dijit/lib/main.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- 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
-*/
-
-
-// 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;
-});