aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/httpBackend.js
diff options
context:
space:
mode:
authorCaitlin Potter2013-11-22 08:57:13 -0500
committerPete Bacon Darwin2013-11-22 15:03:12 +0000
commit0f7c4ca671ac807c53510372bb24d5cfec0bc7f5 (patch)
treeee2097692f57ec70e48ba162b536edabae1eef57 /src/ng/httpBackend.js
parenta3172a285fd74b5aa6c8d68a4988c767c06f549c (diff)
downloadangular.js-0f7c4ca671ac807c53510372bb24d5cfec0bc7f5.tar.bz2
chore(style): fix missing indentation in httpBackend from a3172a2
Diffstat (limited to 'src/ng/httpBackend.js')
-rw-r--r--src/ng/httpBackend.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/httpBackend.js b/src/ng/httpBackend.js
index 3982fad0..71592a56 100644
--- a/src/ng/httpBackend.js
+++ b/src/ng/httpBackend.js
@@ -136,7 +136,7 @@ function createHttpBackend($browser, XHR, $browserDefer, callbacks, rawDocument,
// - adds and immediately removes script elements from the document
var script = rawDocument.createElement('script'),
doneWrapper = function() {
- script.onreadystatechange = script.onload = script.onerror = null;
+ script.onreadystatechange = script.onload = script.onerror = null;
rawDocument.body.removeChild(script);
if (done) done();
};