smesh/doc/salome/gui/SMESH/whdata/whgdata.js
2005-11-28 09:57:47 +00:00

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;