| Index: lib/dom/templates/html/dart2js/factoryprovider_XMLHttpRequest.darttemplate
|
| diff --git a/lib/dom/templates/html/dart2js/factoryprovider_XMLHttpRequest.darttemplate b/lib/dom/templates/html/dart2js/factoryprovider_XMLHttpRequest.darttemplate
|
| index a434d189ec20a882ae82a9b4cc586c8f19bb4875..5772ad76136ca2c77d5f7f92ea358a7af1c1bdad 100644
|
| --- a/lib/dom/templates/html/dart2js/factoryprovider_XMLHttpRequest.darttemplate
|
| +++ b/lib/dom/templates/html/dart2js/factoryprovider_XMLHttpRequest.darttemplate
|
| @@ -7,5 +7,9 @@ class $FACTORYPROVIDER {
|
|
|
| factory XMLHttpRequest.get(String url,
|
| onSuccess(XMLHttpRequest request)) =>
|
| - _XMLHttpRequestUtils.get(url, onSuccess);
|
| + _XMLHttpRequestUtils.get(url, onSuccess, false);
|
| +
|
| + factory XMLHttpRequest.getWithCredentials(String url,
|
| + onSuccess(XMLHttpRequest request)) =>
|
| + _XMLHttpRequestUtils.get(url, onSuccess, true);
|
| }
|
|
|