Changeset 16315
- Timestamp:
- 05/27/13 16:24:50 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16314 r16315 106 106 var Time = []; 107 107 var line; 108 108 109 for( src=0;src<source.length;src++) 109 110 { … … 121 122 if (xmlhttp.readyState==4 && xmlhttp.status==200) 122 123 { 123 line =xmlhttp.responseText.split('\n');124 document.getElementById('data').innerHTML=line;124 line[src]=xmlhttp.responseText.split('\n'); 125 GraphData(line); 125 126 } 126 127 } … … 128 129 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[src])+"&time="+year+"-"+month+"-"+day,true); 129 130 xmlhttp.send(); 131 } 132 function GraphData(x) 133 { 134 document.getElementById('data').innerHTML=x; 130 135 } 131 136
Note:
See TracChangeset
for help on using the changeset viewer.