chore(style): fix missing indentation in httpBackend from a3172a2

This commit is contained in:
Caitlin Potter 2013-11-22 08:57:13 -05:00 committed by Pete Bacon Darwin
parent a3172a285f
commit 0f7c4ca671

View file

@ -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();
};