Changeset 11040
- Timestamp:
- 10/21/07 20:08:56 (13 months ago)
- Location:
- dijit/trunk/_base
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/_base/place.js
r10680 r11040 57 57 58 58 dijit.placeOnScreen = function( 59 /* HTMLElement*/ node,59 /* DomNode */ node, 60 60 /* Object */ pos, 61 61 /* Object */ corners, … … 82 82 } 83 83 84 dijit._place = function(/* HtmlElement*/ node, /* Array */ choices, /* Function */ layoutNode){84 dijit._place = function(/*DomNode*/ node, /* Array */ choices, /* Function */ layoutNode){ 85 85 // summary: 86 86 // Given a list of spots to put node, put it at the first spot where it fits, … … 157 157 158 158 dijit.placeOnScreenAroundElement = function( 159 /* HTMLElement */node,160 /* HTMLElement */aroundNode,159 /* DomNode */ node, 160 /* DomNode */ aroundNode, 161 161 /* Object */ aroundCorners, 162 162 /* Function */ layoutNode){ -
dijit/trunk/_base/popup.js
r10846 r11040 225 225 226 226 227 dijit.BackgroundIframe = function(/* HTMLElement*/node){227 dijit.BackgroundIframe = function(/* DomNode */node){ 228 228 // summary: 229 229 // For IE z-index schenanigans. id attribute is required. -
dijit/trunk/_base/scroll.js
r9728 r11040 1 1 dojo.provide("dijit._base.scroll"); 2 2 3 dijit.scrollIntoView = function(/* HTMLElement*/node){3 dijit.scrollIntoView = function(/* DomNode */node){ 4 4 // summary 5 5 // Scroll the passed node into view, if it is not.