Changeset 16436 for schedule/Module/calendar.php
- Timestamp:
- 05/29/13 15:10:37 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16435 r16436 128 128 { 129 129 130 Data[ 1]= new Array();130 Data[0]= new Array(); 131 131 //Data[sources]= new Array(); 132 132 … … 135 135 { 136 136 rows=line[row].split(','); 137 Data[ 1].push(rows[4]);137 Data[0].push(rows[4]); 138 138 } 139 139 140 140 141 GraphData(Data, 1);141 GraphData(Data,0); 142 142 //document.getElementById('data').innerHTML=Data[sources]; 143 143 } 144 144 } 145 145 146 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[ 1])+"&time="+year+"-"+month+"-"+day,true);146 xmlhttp.open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[0])+"&time="+year+"-"+month+"-"+day,true); 147 147 xmlhttp.send(); 148 document.getElementById('data').innerHTML=source.length+""+source[ 1];148 document.getElementById('data').innerHTML=source.length+""+source[0]; 149 149 //} 150 150
Note:
See TracChangeset
for help on using the changeset viewer.