mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
24 lines
437 B
JavaScript
24 lines
437 B
JavaScript
|
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;
|