BUG 8893 En Triggers en browser IE9 tiene scroll bar y en Chrome... SOLVED

- Existe un pequeñesfase con el panel content.
- Se agrego un js para poder reducir el tamañxcedente y no sobrepasar el content.
This commit is contained in:
Marco Antonio Nina
2012-05-10 09:19:40 -04:00
parent 86ede96961
commit b7e13ea1c2

View File

@@ -57,7 +57,16 @@
}
function triggerFromLibrary() {
popupWindow('@G::LoadTranslation(ID_NEW_TRIGGERS)', '@G::encryptlink(@#triggersOptionList)?PRO_UID=@%PRO_UID' , 600, 340);
popupWindow('@G::LoadTranslation(ID_NEW_TRIGGERS)', '@G::encryptlink(@#triggersOptionList)?PRO_UID=@%PRO_UID' , 600, 400);
if (navigator.appName != "Microsoft Internet Explorer") {
try {
var oAllPs = document.querySelectorAll("div.panel_content___processmaker");
oAllPs[3].style.height = "340px";
}
catch(e) {
// nothing to do
}
}
}
function triggerEdit(sUID) {
@@ -65,7 +74,7 @@
}
function triggerProperties( sUID ) {
popupWindow('@G::LoadTranslation(ID_TRIGGERS)', '@G::encryptlink(@#triggersProperties)?TRI_UID='+ sUID , 600, 340);
popupWindow('@G::LoadTranslation(ID_TRIGGERS)', '@G::encryptlink(@#triggersProperties)?TRI_UID='+ sUID , 600, 340);
}
function triggerPropertiesSave( form ) {