- Timestamp:
- 05/30/13 10:32:29 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/Module/calendar.php
r16471 r16472 108 108 var T = []; 109 109 var sources = 0; 110 var xmlhttp = [];110 var xmlhttp = new Array(); 111 111 112 112 for(sources=0;sources<source.length;sources++) … … 116 116 if (window.XMLHttpRequest) 117 117 {// code for IE7+, Firefox, Chrome, Opera, Safari 118 xmlhttp [sources]=new XMLHttpRequest();118 xmlhttp.push(new XMLHttpRequest()); 119 119 } 120 120 121 121 else 122 122 {// code for IE6, IE5 123 xmlhttp [sources]=new ActiveXObject("Microsoft.XMLHTTP");123 xmlhttp.push(new ActiveXObject("Microsoft.XMLHTTP")); 124 124 } 125 125
Note:
See TracChangeset
for help on using the changeset viewer.