Changeset 16472 for schedule


Ignore:
Timestamp:
05/30/13 10:32:29 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16471 r16472  
    108108                                                        var T = [];
    109109                                                        var sources = 0;
    110                                                         var xmlhttp = [];
     110                                                        var xmlhttp = new Array();
    111111                                                       
    112112                                                        for(sources=0;sources<source.length;sources++)
     
    116116                                                                if (window.XMLHttpRequest)
    117117                                                                  {// code for IE7+, Firefox, Chrome, Opera, Safari
    118                                                                   xmlhttp[sources]=new XMLHttpRequest();
     118                                                                  xmlhttp.push(new XMLHttpRequest());
    119119                                                                  }
    120120                                                                 
    121121                                                                else
    122122                                                                  {// code for IE6, IE5
    123                                                                   xmlhttp[sources]=new ActiveXObject("Microsoft.XMLHTTP");
     123                                                                  xmlhttp.push(new ActiveXObject("Microsoft.XMLHTTP"));
    124124                                                                  }
    125125                                                               
Note: See TracChangeset for help on using the changeset viewer.