From 0181c0110985cfd2659e81c8cc1ef5a2f73bc697 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 14 Aug 2012 19:04:32 +0400 Subject: dojo: remove uncompressed files --- lib/dijit/_base/scroll.js.uncompressed.js | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 lib/dijit/_base/scroll.js.uncompressed.js (limited to 'lib/dijit/_base/scroll.js.uncompressed.js') diff --git a/lib/dijit/_base/scroll.js.uncompressed.js b/lib/dijit/_base/scroll.js.uncompressed.js deleted file mode 100644 index 6de65e593..000000000 --- a/lib/dijit/_base/scroll.js.uncompressed.js +++ /dev/null @@ -1,17 +0,0 @@ -define("dijit/_base/scroll", [ - "dojo/window", // windowUtils.scrollIntoView - ".." // export symbol to dijit -], function(windowUtils, dijit){ - // module: - // dijit/_base/scroll - // summary: - // Back compatibility module, new code should use windowUtils directly instead of using this module. - - dijit.scrollIntoView = function(/*DomNode*/ node, /*Object?*/ pos){ - // summary: - // Scroll the passed node into view, if it is not already. - // Deprecated, use `windowUtils.scrollIntoView` instead. - - windowUtils.scrollIntoView(node, pos); - }; -}); -- cgit v1.2.3-54-g00ecf