docs(guide/ie): correct conditional comment to load JSON polyfill for IE7 and lower

Text specifies "polyfill JSON.stringify for IE7 and below" conditional comment for loading the
polyfill was "lte IE 8".

Closes #6227
This commit is contained in:
Tobias Leugger - Vibes
2014-02-12 13:36:01 +01:00
committed by Caitlin Potter
parent 2a37690f70
commit 84ad0a037c

View File

@@ -31,7 +31,7 @@ To make your Angular application work on IE please make sure that:
<!doctype html>
<html xmlns:ng="http://angularjs.org">
<head>
<!--[if lte IE 8]>
<!--[if lte IE 7]>
<script src="/path/to/json2.js"></script>
<![endif]-->
</head>