Changeset 16325 for schedule/Module


Ignore:
Timestamp:
05/27/13 16:43:25 (11 years ago)
Author:
tanio
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/Module/calendar.php

    r16324 r16325  
    125125                                                                        {
    126126                                                                               
    127                                                                                         line=xmlhttp.responseText.split('\n');
    128                                                                                         for(row=0;row<line.length;row++)
    129                                                                                         {
    130                                                                                                 rows=line[row].split(',');
    131                                                                                                 val.push(rows[4]);
    132                                                                                                 T.push(rows[0]);
    133                                                                                         }
    134                                                                                
    135                                                                                 GraphData(val,T);
     127                                                                                        line[0]=xmlhttp.responseText.split('\n');
     128                                                                                        GraphData(line);
    136129                                                                        }
    137130                                                                }
     
    140133                                                                xmlhttp.send();
    141134                                                        }
    142                                                         function GraphData(y,x)
     135                                                        function GraphData(data)
    143136                                                        {
    144                                                                 document.getElementById('data').innerHTML=x+""+y;
     137                                                                document.getElementById('data').innerHTML=data;
    145138                                                        }
    146139                                                       
Note: See TracChangeset for help on using the changeset viewer.