Changeset 1455 for trunk/workflow


Ignore:
Timestamp:
09/28/09 14:30:50 (15 years ago)
Author:
gbisotto
Message:

Ticket #657 - Corrigida uma propriedade de CSS que estava impedindo que o conteiner se redimencionasse

Location:
trunk/workflow/js/userinterface
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/js/userinterface/externals.js

    r1449 r1455  
    3434 
    3535        // altura mínima do conteiner 
    36         content_id_3.style.height = "260px"; 
     36        if(is_ie){ 
     37                content_id_3.style.height = "260px"; 
     38        } else { 
     39                content_id_3.style.minHeight = "260px"; 
     40        } 
    3741 
    3842        (function loop(i) { 
  • trunk/workflow/js/userinterface/processes.js

    r1454 r1455  
    8383        var content_id_1 = document.getElementById("content_id_1"); 
    8484 
    85         content_id_1.style.height = "260px"; 
     85        if(is_ie){ 
     86                content_id_1.style.height = "260px"; 
     87        } else { 
     88                content_id_1.style.minHeight = "260px"; 
     89        } 
    8690 
    8791        var div_conteiner = document.createElement("DIV"); 
Note: See TracChangeset for help on using the changeset viewer.