mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 08:39:16 +05:00
26 lines
411 B
JavaScript
Executable File
26 lines
411 B
JavaScript
Executable File
// WebHelp 5.10.001
|
|
var gIEA = new Array();
|
|
function aGE(sName, sDef)
|
|
{
|
|
var len = gIEA.length;
|
|
gIEA[len] = new gloEntry(sName, sDef);
|
|
}
|
|
|
|
function gloEntry(sName, sDef)
|
|
{
|
|
this.sName = sName;
|
|
this.sDef = sDef;
|
|
this.nNKOff = 0;
|
|
}
|
|
|
|
function window_OnLoad()
|
|
{
|
|
if (parent && parent != this) {
|
|
if (parent.putData)
|
|
{
|
|
parent.putData(gIEA);
|
|
}
|
|
}
|
|
}
|
|
|
|
window.onload = window_OnLoad; |