aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/ie.ngdoc
diff options
context:
space:
mode:
authorCaitlin Potter2014-02-15 20:19:10 -0500
committerPeter Bacon Darwin2014-02-16 19:03:45 +0000
commitf7fad29fd99cabdbb17fa02dc214de2354f93cdf (patch)
tree61fc2299fe732d189f85b0afe84e70667bf9fd13 /docs/content/guide/ie.ngdoc
parent896e34689dfe0d66c09627179940a7b3eaac41bc (diff)
downloadangular.js-f7fad29fd99cabdbb17fa02dc214de2354f93cdf.tar.bz2
docs(bike-shed-migration): convert guide <doc:...> examples to <example>...
This CL also contains style fixes as the converted scripts caused jshint to complain.
Diffstat (limited to 'docs/content/guide/ie.ngdoc')
-rw-r--r--docs/content/guide/ie.ngdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/guide/ie.ngdoc b/docs/content/guide/ie.ngdoc
index d66fd0b4..f4e442b7 100644
--- a/docs/content/guide/ie.ngdoc
+++ b/docs/content/guide/ie.ngdoc
@@ -27,7 +27,7 @@ To make your Angular application work on IE please make sure that:
[JSON2](https://github.com/douglascrockford/JSON-js) or
[JSON3](http://bestiejs.github.com/json3/) polyfills for this.
- ```html
+ ```html
<!doctype html>
<html xmlns:ng="http://angularjs.org">
<head>
@@ -43,7 +43,7 @@ To make your Angular application work on IE please make sure that:
2. add `id="ng-app"` to the root element in conjunction with `ng-app` attribute
- ```html
+ ```html
<!doctype html>
<html xmlns:ng="http://angularjs.org" id="ng-app" ng-app="optionalModuleName">
...
@@ -55,7 +55,7 @@ To make your Angular application work on IE please make sure that:
4. if you **do use** custom element tags, then you must take these steps to make IE 8 and below happy:
- ```html
+ ```html
<!doctype html>
<html xmlns:ng="http://angularjs.org" id="ng-app" ng-app="optionalModuleName">
<head>