- Timestamp:
- 06/03/13 16:23:52 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/js/chart.js
r16621 r16624 22 22 XML.onload=function() 23 23 { 24 if ( testXML.status==200)24 if (XML.status==200) 25 25 { 26 26 alert("request ok"); 27 line= testXML.responseText.split('\n');27 line=XML.responseText.split('\n'); 28 28 dataSource.push(line); 29 29 if (dataSource.length == source.length) … … 35 35 } 36 36 else 37 alert("status is " + testXML.status); 37 alert("status is " + XML.status); 38 alert("status is " + XML.status); 38 39 39 40 };
Note:
See TracChangeset
for help on using the changeset viewer.