You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/content/error/sce/iequirks.ngdoc
+3-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,9 @@
6
6
This error occurs when you are using AngularJS with {@link api/ng.$sce Strict Contextual Escaping (SCE)} mode enabled (the default) on IE8 or lower in quirks mode.
7
7
8
8
In this mode, IE8 allows one to execute arbitrary javascript by the use of the `expression()` syntax and is not supported.
9
-
Refer {@link http://blogs.msdn.com/b/ie/archive/2008/10/16/ending-expressions.aspx MSDN Blogs > IEBlog > Ending Expressions} to learn more about them.
Copy file name to clipboardExpand all lines: docs/content/guide/dev_guide.services.$location.ngdoc
+8-10
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,7 @@
4
4
5
5
# What does it do?
6
6
7
-
The `$location` service parses the URL in the browser address bar (based on the {@link
8
-
https://developer.mozilla.org/en/window.location window.location}) and makes the URL available to
7
+
The `$location` service parses the URL in the browser address bar (based on the [window.location](https://developer.mozilla.org/en/window.location)) and makes the URL available to
9
8
your application. Changes to the URL in the address bar are reflected into $location service and
10
9
changes to $location are reflected into the browser address bar.
11
10
@@ -145,7 +144,7 @@ unless `replace()` is called again.
145
144
146
145
### Setters and character encoding
147
146
You can pass special characters to `$location` service and it will encode them according to rules
148
-
specified in {@link http://www.ietf.org/rfc/rfc3986.txt RFC 3986}. When you access the methods:
147
+
specified in [RFC 3986](http://www.ietf.org/rfc/rfc3986.txt). When you access the methods:
149
148
150
149
- All values that are passed to `$location` setter methods, `path()`, `search()`, `hash()`, are
151
150
encoded.
@@ -160,7 +159,7 @@ encoded.
160
159
161
160
`$location` service has two configuration modes which control the format of the URL in the browser
162
161
address bar: **Hashbang mode** (the default) and the **HTML5 mode** which is based on using the
163
-
HTML5 {@link http://www.w3.org/TR/html5/browsers.html#history History API}. Applications use the same API in
162
+
HTML5 [History API](http://www.w3.org/TR/html5/history.html). Applications use the same API in
164
163
both modes and the `$location` service will work with appropriate URL segments and browser APIs to
165
164
facilitate the browser URL change and history management.
166
165
@@ -242,8 +241,8 @@ your document:
242
241
243
242
This will cause crawler bot to request links with `_escaped_fragment_` param so that your server
244
243
can recognize the crawler and serve a HTML snapshots. For more information about this technique,
245
-
see {@link http://code.google.com/web/ajaxcrawling/docs/specification.html Making AJAX Applications
@@ -625,8 +624,7 @@ then uses the information it obtains to compose hashbang URLs (such as
625
624
626
625
## Two-way binding to $location
627
626
628
-
The Angular's compiler currently does not support two-way binding for methods (see {@link
629
-
https://github.com/angular/angular.js/issues/404 issue}). If you should require two-way binding
627
+
The Angular's compiler currently does not support two-way binding for methods (see [issue](https://github.com/angular/angular.js/issues/404)). If you should require two-way binding
630
628
to the $location object (using {@link api/ng.directive:input.text
631
629
ngModel} directive on an input field), you will need to specify an extra model property
632
630
(e.g. `locationPath`) with two watchers which push $location updates in both directions. For
0 commit comments