Index: trunk/extensions/MobileFrontend/javascripts/beta_application.js |
— | — | @@ -140,7 +140,9 @@ |
141 | 141 | } else { |
142 | 142 | xmlHttp = new ActiveXObject( 'Microsoft.XMLHTTP' ); |
143 | 143 | } |
144 | | - xmlHttp.overrideMimeType( 'text/xml' ); |
| 144 | + if( xmlHttp.overrideMimeType ) { // non standard |
| 145 | + xmlHttp.overrideMimeType( 'text/xml' ); |
| 146 | + } |
145 | 147 | xmlHttp.onreadystatechange = function() { |
146 | 148 | if ( xmlHttp.readyState === 4 && xmlHttp.status === 200 ) { |
147 | 149 | options.success( xmlHttp.responseXML ); |
Index: trunk/extensions/MobileFrontend/javascripts/application.js |
— | — | @@ -135,7 +135,9 @@ |
136 | 136 | } else { |
137 | 137 | xmlHttp = new ActiveXObject( 'Microsoft.XMLHTTP' ); |
138 | 138 | } |
139 | | - xmlHttp.overrideMimeType( 'text/xml' ); |
| 139 | + if( xmlHttp.overrideMimeType ) { // non standard |
| 140 | + xmlHttp.overrideMimeType( 'text/xml' ); |
| 141 | + } |
140 | 142 | xmlHttp.onreadystatechange = function() { |
141 | 143 | if ( xmlHttp.readyState === 4 && xmlHttp.status === 200 ) { |
142 | 144 | options.success( xmlHttp.responseXML ); |