aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorBrian Ford2013-08-01 14:52:48 -0700
committerIgor Minar2013-08-08 11:11:17 -0700
commit3cde777514357eab54e39c126a29f1f7dcbb81af (patch)
tree3a455f79222d7071c977fe6d5c172b27ddd982d2 /docs/content
parentdef7e961b4af13a8be95a9d9f58255ccbc09b1cb (diff)
downloadangular.js-3cde777514357eab54e39c126a29f1f7dcbb81af.tar.bz2
docs(minErr): add minErr description for jqLite:nosel
Closes #3426
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/error/jqLite/nosel.ngdoc7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/content/error/jqLite/nosel.ngdoc b/docs/content/error/jqLite/nosel.ngdoc
index c776c153..31838102 100644
--- a/docs/content/error/jqLite/nosel.ngdoc
+++ b/docs/content/error/jqLite/nosel.ngdoc
@@ -2,3 +2,10 @@
@name jqLite:nosel
@fullName Unsupported Selector Lookup
@description
+
+In order to keep Angular small, Angular implements only a subset of the selectors in {@link api/angular.element#angularsjqlite jqLite}.
+This error occurs when a jqLite instance is invoked with a selector other than this subset.
+
+In order to resolve this error, rewrite your code to only use tag name selectors and manually traverse the DOM using the APIs provided by jqLite.
+
+Alternatively, you can include a full version of jQuery, which Angular will automatically use and that will make all selectors available.