]> git.wh0rd.org - tt-rss.git/blobdiff - lib/dojo/lib/kernel.js
update dojo to 1.7.3
[tt-rss.git] / lib / dojo / lib / kernel.js
diff --git a/lib/dojo/lib/kernel.js b/lib/dojo/lib/kernel.js
deleted file mode 100644 (file)
index 94a3fef..0000000
+++ /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_;
-});