Changeset 16332
- Timestamp:
- 05/27/13 17:06:48 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16330 r16332 125 125 { 126 126 127 line[src]=xmlhttp.responseText.split('\n'); 128 GraphData.apply(0,line); 127 Data[src]= new Array(); 128 line=xmlhttp.responseText.split('\n'); 129 for(row=0;row<line.length;row++) 130 { 131 rows=line[row].split(','); 132 Data[src].push(rows[4]); 133 } 134 GraphData(Data); 129 135 } 130 136 } … … 133 139 xmlhttp.send(); 134 140 } 135 function GraphData( arr,l)141 function GraphData(data) 136 142 { 137 document.getElementById('data').innerHTML= l[arr];143 document.getElementById('data').innerHTML=data; 138 144 } 139 145
Note:
See TracChangeset
for help on using the changeset viewer.