Changeset 13495


Ignore:
Timestamp:
05/01/12 13:18:38 (13 years ago)
Author:
tbretz
Message:
Removed some warning given by the Closure Compiler; exported onload
File:
1 edited

Legend:

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

    r13479 r13495  
    279279    var x = table.offsetLeft;
    280280
    281     var ix = parseInt(x);
     281    var ix = parseInt(x, 10);
    282282    if (ix>W)
    283283    {
     
    310310    var x = table.offsetLeft;
    311311
    312     var ix = parseInt(x);
     312    var ix = parseInt(x, 10);
    313313    if (ix==0)
    314314    {
     
    353353            if (xmlHttp.readyState == 4)
    354354            {
    355                 if (this.status!=0 && this.status!=200)
     355                if (xmlHttp.status!=0 && xmlHttp.status!=200)
    356356                {
    357                     alert("ERROR[1] - HTTP request '"+fname+".txt': "+this.statusText+" ["+this.status+"]");
     357                    alert("ERROR[1] - HTTP request '"+fname+".txt': "+xmlHttp.statusText+" ["+xmlHttp.status+"]");
    358358                    setTimeout("refresh_text()", 10000);
    359359                    return;
    360360                }
    361361
    362                 update_text(fname, this.responseText);
     362                update_text(fname, xmlHttp.responseText);
    363363                setTimeout("refresh_text()", 3000);
    364364            }
     
    523523    hue %= 6;
    524524
    525     if (hue<1) return parseInt(255*hue);
    526     if (hue<3) return parseInt(255);
    527     if (hue<4) return parseInt(255*(4-hue));
     525    if (hue<1) return parseInt(255*hue,     10);
     526    if (hue<3) return parseInt(255,         10);
     527    if (hue<4) return parseInt(255*(4-hue), 10);
    528528
    529529/*
     
    719719}
    720720*/
     721
     722window['onload'] = onload;
Note: See TracChangeset for help on using the changeset viewer.