Sha256: fd88c4541d865a9de2e0345724f873fcf8c5cd855fa71ed7bee5f848b34848e5
Contents?: true
Size: 590 Bytes
Versions: 8
Compression:
Stored size: 590 Bytes
Contents
define("dijit/_base/scroll", [ "dojo/window", // windowUtils.scrollIntoView "../main" // export symbol to dijit ], function(windowUtils, dijit){ // module: // dijit/_base/scroll /*===== return { // 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
8 entries across 8 versions & 2 rubygems