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

Commit

Permalink
fix(docs): added note about needing JSON shim for IE7 and earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
btford authored and IgorMinar committed Aug 10, 2012
1 parent e0a54f6 commit 536de14
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/content/guide/ie.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ on IE v8.0 or earlier.

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

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

2. you **do not** use custom element tags such as `<ng:view>` (use the attribute version `<div
ng-view>` instead), or

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

<pre>
<html xmlns:ng="http://angularjs.org">
Expand Down

0 comments on commit 536de14

Please sign in to comment.