From 870334be3f58507c05bfc72f3edbe5db10af4caf Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 2 Apr 2013 20:06:16 +0400 Subject: remove dojo uncompressed files --- lib/dijit/_base/manager.js.uncompressed.js | 35 ------------------------------ 1 file changed, 35 deletions(-) delete mode 100644 lib/dijit/_base/manager.js.uncompressed.js (limited to 'lib/dijit/_base/manager.js.uncompressed.js') diff --git a/lib/dijit/_base/manager.js.uncompressed.js b/lib/dijit/_base/manager.js.uncompressed.js deleted file mode 100644 index b4e2729ae..000000000 --- a/lib/dijit/_base/manager.js.uncompressed.js +++ /dev/null @@ -1,35 +0,0 @@ -define("dijit/_base/manager", [ - "dojo/_base/array", - "dojo/_base/config", // defaultDuration - "dojo/_base/lang", - "../registry", - "../main" // for setting exports to dijit namespace -], function(array, config, lang, registry, dijit){ - - // module: - // dijit/_base/manager - - var exports = { - // summary: - // Deprecated. Shim to methods on registry, plus a few other declarations. - // New code should access dijit/registry directly when possible. - }; - - array.forEach(["byId", "getUniqueId", "findWidgets", "_destroyAll", "byNode", "getEnclosingWidget"], function(name){ - exports[name] = registry[name]; - }); - - lang.mixin(exports, { - // defaultDuration: Integer - // The default fx.animation speed (in ms) to use for all Dijit - // transitional fx.animations, unless otherwise specified - // on a per-instance basis. Defaults to 200, overrided by - // `djConfig.defaultDuration` - defaultDuration: config["defaultDuration"] || 200 - }); - - lang.mixin(dijit, exports); - - /*===== return exports; =====*/ - return dijit; // for back compat :-( -}); -- cgit v1.2.3