aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthorn02014-02-18 11:52:13 +0200
committerTobias Bosch2014-03-21 13:05:29 -0700
commit8fd47a1cd54c6f8e7ba2cac8ad34fdf9bf4d74be (patch)
tree040c86d2cbeead2b7b4d1f28172fe982dd03198f
parente48c28fe9292efe7af6205b2be116d2350990c73 (diff)
downloadangular.js-8fd47a1cd54c6f8e7ba2cac8ad34fdf9bf4d74be.tar.bz2
docs($q): add mention of Antroid 2.x browser
The Android 2.x browser is not ES5-compatible in that it does not allow use of reserved words as property names. This docs fix adds Android to the note to the `$q` docs which already make it known that string property notation should be used when using the `finally` method on `$q`.
-rw-r--r--src/ng/q.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/q.js b/src/ng/q.js
index eb3b2bed..76e00df0 100644
--- a/src/ng/q.js
+++ b/src/ng/q.js
@@ -112,7 +112,7 @@
*
* Because `finally` is a reserved word in JavaScript and reserved keywords are not supported as
* property names by ES3, you'll need to invoke the method like `promise['finally'](callback)` to
- * make your code IE8 compatible.
+ * make your code IE8 and Android 2.x compatible.
*
* # Chaining promises
*