Changeset 16511
- Timestamp:
- 05/31/13 06:32:46 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16510 r16511 119 119 { 120 120 getXML(); 121 xmlhttp[index].onreadystatechange=function() 122 { 121 xmlhttp[index].onreadystatechange=xmlStateChange() 122 123 xmlhttp[index].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[index])+"&time="+year+"-"+month+"-"+day,true); 124 xmlhttp[index].send(); 125 } 126 127 function xmlStateChange() 128 { 129 123 130 if (xmlhttp[index].readyState==4 && xmlhttp.status==200) 124 131 { … … 133 140 } 134 141 135 } 136 xmlhttp[index].open("GET","http://www.fact-project.org/smartfact/index.php?source="+escape(source[index])+"&time="+year+"-"+month+"-"+day,true); 137 xmlhttp[index].send(); 142 138 143 } 139 144
Note:
See TracChangeset
for help on using the changeset viewer.