Changeset 9838

Show
Ignore:
Timestamp:
07/27/07 14:41:49 (18 months ago)
Author:
elazutkin
Message:

Changed zIndex of avatar to 1999 --- it ensures that it is above any pop-up widgets. Minor typo fix in docs. Fixes #654.

Location:
dojo/trunk/dnd
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • dojo/trunk/dnd/avatar.js

    r9540 r9838  
    1717                a.className = "dojoDndAvatar"; 
    1818                a.style.position = "absolute"; 
    19                 a.style.zIndex = 999; 
     19                a.style.zIndex = 1999; 
    2020                a.style.margin = "0px"; // to avoid dojo.marginBox() problems with table's margins 
    2121                var b = dojo.doc.createElement("tbody"); 
  • dojo/trunk/dnd/selector.js

    r9779 r9838  
    7777                // addSelected: Boolean: all new nodes will be added to selected items, if true, no selection change otherwise 
    7878                // data: Array: a list of data items, which should be processed by the creator function 
    79                 // before: Boolean: insert before the anchor, if true, and after the anchot otherwise 
     79                // before: Boolean: insert before the anchor, if true, and after the anchor otherwise 
    8080                // anchor: Node: the anchor node to be used as a point of insertion 
    8181                var oldCreator = this._normalizedCreator;