File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,7 @@ if(!javaxt.dhtml) javaxt.dhtml={};
5
5
//** Callout Class
6
6
//******************************************************************************
7
7
/**
8
- * Simple div with an arrow. This class can be used as a pop-up dialog or
9
- * inside another element.
8
+ * Used to create simple tooltip/popup boxes with an arrow.
10
9
*
11
10
******************************************************************************/
12
11
@@ -69,13 +68,14 @@ javaxt.dhtml.Callout = function(parent, config) {
69
68
70
69
//Create outer div
71
70
div = document . createElement ( "div" ) ;
71
+ div . setAttribute ( "desc" , me . className ) ;
72
72
if ( config . position === "absolute" ) {
73
73
div . style . display = "none" ;
74
74
div . style . position = "absolute" ;
75
75
div . style . top = div . style . left = 0 ;
76
76
}
77
77
parent . appendChild ( div ) ;
78
-
78
+ me . el = div ;
79
79
80
80
81
81
//Create callout box
You can’t perform that action at this time.
0 commit comments