mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-14 01:28:34 +05:00
25 lines
458 B
JavaScript
Executable File
25 lines
458 B
JavaScript
Executable File
// WebHelp 5.10.001
|
|
var gTEA = new Array();
|
|
function aTE(sTopicTitle, sTopicURL)
|
|
{
|
|
var len = gTEA.length;
|
|
gTEA[len] = new topicEntry(sTopicTitle, sTopicURL);
|
|
}
|
|
|
|
function topicEntry(sTopicTitle, sTopicURL)
|
|
{
|
|
this.sTopicTitle = sTopicTitle;
|
|
this.sTopicURL = sTopicURL;
|
|
}
|
|
|
|
function window_OnLoad()
|
|
{
|
|
if (parent && parent != this) {
|
|
if (parent.putFtsTData)
|
|
{
|
|
parent.putFtsTData(gTEA);
|
|
}
|
|
}
|
|
}
|
|
|
|
window.onload = window_OnLoad; |