0
|
1 /*
|
|
2 * This script is used for WebFX Api pages
|
|
3 *
|
|
4 * It defines one funtion and includes helptip.js, helptip.css and webfxapi.css
|
|
5 */
|
|
6
|
|
7 document.write( "<script type='text/javascript' src='local/helptip.js'><\/script>" );
|
|
8 document.write( "<link type='text/css' rel='stylesheet' href='local/helptip.css' />" );
|
|
9 document.write( "<link type='text/css' rel='stylesheet' href='local/webfxapi.css' />" );
|
|
10
|
|
11 function toggleMethodArguments( e, a ) {
|
|
12 if ( a && a.nextSibling &&
|
|
13 typeof a.nextSibling.innerHTML != "undefined" &&
|
|
14 typeof showHelpTip != "undefined" ) {
|
|
15
|
|
16 showHelpTip( e, a.nextSibling.innerHTML );
|
|
17
|
|
18 }
|
|
19 }
|
|
20 |