Sha256: f62e3599647c9b75ab8513010a563ab1ede93cd4e50699e4cb1de0694f1fca97
Contents?: true
Size: 550 Bytes
Versions: 5
Compression:
Stored size: 550 Bytes
Contents
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); }; });
Version data entries
5 entries across 5 versions & 1 rubygems