Skip to content

Commit 939ce80

Browse files
committed
Documentation updates
1 parent 3655d65 commit 939ce80

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/utils/Utils.js

+10
Original file line numberDiff line numberDiff line change
@@ -1392,6 +1392,16 @@ javaxt.dhtml.utils = {
13921392
//** getHighestElements
13931393
//**************************************************************************
13941394
/** Returns an array of elements at the highest z-index in the document
1395+
* @param obj DOM element. Optional. If given, will limit search within
1396+
* the DOM element. Otherwise, searches the entire document (default).
1397+
* @return A JSON object with the following:
1398+
* <ul>
1399+
* <li>zIndex: Number representing the highest z-index</li>
1400+
* <li>elements: An array of DOM elements at the highest z-index</li>
1401+
* <li>contains: Function that can be used to test whether a DOM object is
1402+
* at the highest z-index
1403+
* </li>
1404+
* </ul>
13951405
*/
13961406
getHighestElements: function(obj){
13971407
var arr = [];

0 commit comments

Comments
 (0)