Changeset 11040

Show
Ignore:
Timestamp:
10/21/07 20:08:56 (13 months ago)
Author:
alex
Message:

HTMLElement -> DomNode? in docs. Refs #4580

Location:
dijit/trunk/_base
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/_base/place.js

    r10680 r11040  
    5757 
    5858dijit.placeOnScreen = function( 
    59         /* HTMLElement */       node, 
     59        /* DomNode */   node, 
    6060        /* Object */            pos, 
    6161        /* Object */            corners, 
     
    8282} 
    8383 
    84 dijit._place = function(/*HtmlElement*/ node, /* Array */ choices, /* Function */ layoutNode){ 
     84dijit._place = function(/*DomNode*/ node, /* Array */ choices, /* Function */ layoutNode){ 
    8585        // summary: 
    8686        //              Given a list of spots to put node, put it at the first spot where it fits, 
     
    157157 
    158158dijit.placeOnScreenAroundElement = function( 
    159         /* HTMLElement */       node, 
    160         /* HTMLElement */       aroundNode, 
     159        /* DomNode */           node, 
     160        /* DomNode */           aroundNode, 
    161161        /* Object */            aroundCorners, 
    162162        /* Function */          layoutNode){ 
  • dijit/trunk/_base/popup.js

    r10846 r11040  
    225225 
    226226 
    227 dijit.BackgroundIframe = function(/* HTMLElement */node){ 
     227dijit.BackgroundIframe = function(/* DomNode */node){ 
    228228        //      summary: 
    229229        //              For IE z-index schenanigans. id attribute is required. 
  • dijit/trunk/_base/scroll.js

    r9728 r11040  
    11dojo.provide("dijit._base.scroll"); 
    22 
    3 dijit.scrollIntoView = function(/* HTMLElement */node){ 
     3dijit.scrollIntoView = function(/* DomNode */node){ 
    44        //      summary 
    55        //      Scroll the passed node into view, if it is not.