diff options
| author | Brian Ford | 2012-07-19 10:50:36 -0700 |
|---|---|---|
| committer | Igor Minar | 2012-08-10 16:27:44 -0700 |
| commit | 536de148214290f0b4a0595fa16c00da5e527e79 (patch) | |
| tree | 830e7a7caf8a57ec009c6a40c76ed22087a85232 /docs/content/guide/ie.ngdoc | |
| parent | e0a54f6b206dc2b6595f2bc3a17c5932e7477545 (diff) | |
| download | angular.js-536de148214290f0b4a0595fa16c00da5e527e79.tar.bz2 | |
fix(docs): added note about needing JSON shim for IE7 and earlier
Diffstat (limited to 'docs/content/guide/ie.ngdoc')
| -rw-r--r-- | docs/content/guide/ie.ngdoc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/content/guide/ie.ngdoc b/docs/content/guide/ie.ngdoc index f9622180..f2044e77 100644 --- a/docs/content/guide/ie.ngdoc +++ b/docs/content/guide/ie.ngdoc @@ -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"> |
