Changeset 16340 for schedule/Module
- Timestamp:
- 05/27/13 17:26:22 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16339 r16340 120 120 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 121 121 } 122 xmlhttp.onreadystatechange=function( data)122 xmlhttp.onreadystatechange=function() 123 123 { 124 124 if (xmlhttp.readyState==4 && xmlhttp.status==200) … … 131 131 { 132 132 rows=line[row].split(','); 133 str +=Data.push(rows[4]);133 str="["+Data.push(rows[4])+"]"; 134 134 } 135 return str;135 GraphData(str); 136 136 137 137 } … … 141 141 xmlhttp.send(); 142 142 } 143 144 document.getElementById('data').innerHTML=xmlhttp; 145 143 GraphData(x) 144 { 145 document.getElementById('data').innerHTML=x; 146 } 146 147 147 148
Note:
See TracChangeset
for help on using the changeset viewer.