Ignore:
Timestamp:
05/10/12 17:17:19 (13 years ago)
Author:
tbretz
Message:
Another update to the resizing; a fix to the debug line display.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/www/index.js

    r13623 r13642  
    513513
    514514    // ---------------------------------------
    515 
    516     tr = document.createElement("tr");
    517     tr.setAttribute("class", "row");
    518 
    519515    if (debug == true)
    520516    {
     517
     518        tr = document.createElement("tr");
     519        tr.setAttribute("class", "row");
     520
    521521        td = document.createElement("td");
    522522        td.setAttribute("id", "debug"+z);
    523523        td.setAttribute("colspan", "3");
    524524        tr.appendChild(td);
    525     }
    526 
    527     tbody.appendChild(tr);
     525
     526        tbody.appendChild(tr);
     527    }
    528528
    529529    // ---------------------------------------
     
    533533}
    534534
    535 function doresize(z)
     535function resizeimpl(z, cnt)
    536536{
    537537    // 393 / 482    488/482 / 200   200+482-488
     
    548548    var H = window.innerHeight;
    549549
     550    var x = parseInt(img.style.height, 10);
     551
    550552    var ih = H - h + parseInt(img.style.height, 10);
    551553
     
    555557    canv.width  = W;
    556558    canv.height = ih;
     559
     560    if ($("table"+z).offsetHeight == H || cnt==2)
     561        return;
     562
     563    resizeimpl(z, ++cnt);
     564}
     565
     566function doresize(z)
     567{
     568    resizeimpl(z, 0);
    557569
    558570    // ------ debug -----
Note: See TracChangeset for help on using the changeset viewer.