mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-17 11:11:05 +00:00
fix(docs): added note about using JSON3 as a polyfill for IE7
This commit is contained in:
parent
536de14821
commit
2e3651686c
1 changed files with 8 additions and 8 deletions
|
|
@ -12,12 +12,12 @@ on IE v8.0 or earlier.
|
||||||
|
|
||||||
To make your angular application work on IE please make sure that:
|
To make your angular application work on IE please make sure that:
|
||||||
|
|
||||||
1. You provide JSON.stringify (via
|
1. You polyfill JSON.stringify if necessary (IE7 will need this). You can use
|
||||||
[Douglas Crockford's JSON2 library](https://github.com/douglascrockford/JSON-js), or similar)
|
[JSON2](https://github.com/douglascrockford/JSON-js) or
|
||||||
if the browser does not have it. IE7 and earlier will need this.
|
[JSON3](http://bestiejs.github.com/json3/) polyfills for this.
|
||||||
|
|
||||||
2. you **do not** use custom element tags such as `<ng:view>` (use the attribute version `<div
|
2. you **do not** use custom element tags such as `<ng:view>` (use the attribute version
|
||||||
ng-view>` instead), or
|
`<div ng-view>` instead), or
|
||||||
|
|
||||||
3. 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:
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue