aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/http.js
diff options
context:
space:
mode:
authorAnatoly Shikolay2013-05-07 00:56:51 -0400
committerPete Bacon Darwin2013-05-09 15:01:22 +0100
commit4ae4f1edd230affcf4a6675fd748f86665ce2f8b (patch)
treebbf5be0d97c1417cab2c08e3d4f07644ab13460d /src/ng/http.js
parent40c36ee7feeb29c2024c37b7f88c7ad639bdda2f (diff)
downloadangular.js-4ae4f1edd230affcf4a6675fd748f86665ce2f8b.tar.bz2
style(*): fix up semicolon and var usage
Diffstat (limited to 'src/ng/http.js')
-rw-r--r--src/ng/http.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/http.js b/src/ng/http.js
index dd949a6c..a7f3b92d 100644
--- a/src/ng/http.js
+++ b/src/ng/http.js
@@ -699,7 +699,7 @@ function $HttpProvider() {
var rejectFn = chain.shift();
promise = promise.then(thenFn, rejectFn);
- };
+ }
promise.success = function(fn) {
promise.then(function(response) {