Changeset 5157
- Timestamp:
- Oct 23, 2009, 11:28:13 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.14-stable/www/include/scripts/ajax.js
r4967 r5157 66 66 this.parseResponse = function(responseText) 67 67 { 68 var lines = responseText.split(/\n/); 68 // WARNING! Do not use split(/\n/) since IE doesn't include 69 // empty elements (=empty lines) in the array. We need the empty 70 // lines to detect end-of-record. See ticket #1415. 71 var lines = responseText.split('\n'); 69 72 var elements = new Array(); 70 73 var status = null;
Note: See TracChangeset
for help on using the changeset viewer.