summaryrefslogtreecommitdiff
path: root/lib/dojo/lib/kernel.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dojo/lib/kernel.js')
-rw-r--r--lib/dojo/lib/kernel.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/dojo/lib/kernel.js b/lib/dojo/lib/kernel.js
deleted file mode 100644
index 94a3fefae..000000000
--- a/lib/dojo/lib/kernel.js
+++ /dev/null
@@ -1,26 +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 = dojo/lib/kernel
-//
-// This module ensures the dojo object is initialized by...
-//
-// * dojo/_base/_loader/bootstrap
-// * dojo/lib/backCompat
-// * dojo/_base/_loader/hostenv_browser
-//
-// This is roughly equivalent to the work that dojo.js does by injecting
-// bootstrap, loader, and hostenv_browser.
-//
-// note: this module is relevant only when loading dojo with an AMD loader;
-// it is never evaluated otherwise.
-
-// for now, we publish dojo into the global namespace because so many tests and apps expect it.
-define(["dojo/_base/_loader/hostenv_browser"], function(dojo_){
- dojo= dojo_;
- return dojo_;
-});