Delete types
This commit is contained in:
@ -264,7 +264,7 @@ function TMenu(v_obj,v_scr,v_treepath) //Горизонтальное меню
|
||||
//Создаём HTML кнопку
|
||||
cdiv=document.createElement('div');
|
||||
cdiv.setAttribute('id',this.m_pr+tn.htmlid+'bt');
|
||||
cdiv.style.cssText="width: 100%; display: inline-block;";
|
||||
cdiv.style.cssText="width: 100%; display: block;";
|
||||
|
||||
cnt.appendChild(cdiv);
|
||||
//if(nodeTree.getAttribute('visible')=='0') cdiv.style.display='none'; //Видимость кнопки
|
||||
@ -424,7 +424,7 @@ function TMenu(v_obj,v_scr,v_treepath) //Горизонтальное меню
|
||||
|
||||
//создаём кнопку меню
|
||||
cdiv=document.createElement('div');
|
||||
cdiv.style.cssText="width: 100%; display: inline-block;";
|
||||
cdiv.style.cssText="width: 100%; display: block;";
|
||||
pdiv.appendChild(cdiv);
|
||||
if(nodeTree.getAttribute('visible')=='0') cdiv.style.display='none';
|
||||
cdiv.innerHTML=str;
|
||||
@ -615,7 +615,7 @@ function TMenu(v_obj,v_scr,v_treepath) //Горизонтальное меню
|
||||
//Создаём самый верхний контейнер с 0м HTMLID
|
||||
var cnt=document.createElement('div');
|
||||
cnt.setAttribute('id',this.m_pr+this.m_root.htmlid+'tb');
|
||||
cnt.style.cssText="width: 100%; display: inline-block;";
|
||||
cnt.style.cssText="width: 100%; display: block;";
|
||||
cnt.innerHTML='<nobr id="qwery"><img src="../resources/metadata/tree/icons/loading.gif" alt=" "><font color="#999999"><b> Подождите пожалуйста...</b></font></nobr>';
|
||||
this.m_obj.appendChild(cnt);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user