Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 536de14

Browse files
btfordIgorMinar
authored andcommitted
fix(docs): added note about needing JSON shim for IE7 and earlier
1 parent e0a54f6 commit 536de14

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/content/guide/ie.ngdoc

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ on IE v8.0 or earlier.
1212

1313
To make your angular application work on IE please make sure that:
1414

15-
1. you **do not** use custom element tags such as `<ng:view>` (use the attribute version `<div
15+
1. You provide JSON.stringify (via
16+
[Douglas Crockford's JSON2 library](https://github.com/douglascrockford/JSON-js), or similar)
17+
if the browser does not have it. IE7 and earlier will need this.
18+
19+
2. you **do not** use custom element tags such as `<ng:view>` (use the attribute version `<div
1620
ng-view>` instead), or
1721

18-
2. if you **do use** custom element tags, then you must take these steps to make IE happy:
22+
3. if you **do use** custom element tags, then you must take these steps to make IE happy:
1923

2024
<pre>
2125
<html xmlns:ng="http://angularjs.org">

0 commit comments

Comments
 (0)