diff options
author | hwc487 | 2012-01-31 09:22:56 -0800 |
---|---|---|
committer | hwc487 | 2012-01-31 09:22:56 -0800 |
commit | 0b8d8b2eb595b64ef53440b949f3c5ec891daf8a (patch) | |
tree | f4cf57e6b07ae04ea01f16599a5047109cfcf68a /index.html | |
parent | 8e43a46e3d79323fe06dc7771bc611a2c3c85c5c (diff) | |
parent | e4837edab24868a7c093a2a70e8ec3585e1007d8 (diff) | |
download | ninja-0b8d8b2eb595b64ef53440b949f3c5ec891daf8a.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into working
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -168,11 +168,31 @@ | |||
168 | 168 | ||
169 | <script type="text/javascript"> | 169 | <script type="text/javascript"> |
170 | window.onload = function() { | 170 | window.onload = function() { |
171 | // Check if we are running in Chrome | ||
172 | if(navigator.userAgent.toLowerCase().indexOf("chrome") === -1) { | ||
173 | window.location = "./redirect.html"; | ||
174 | } | ||
175 | // Load the version json | ||
176 | var req = new XMLHttpRequest(); | ||
177 | req.open("GET", "versions.json"); | ||
178 | req.onreadystatechange = (function(req) { | ||
179 | return function(event) { | ||
180 | if (req.readyState === 4) { | ||
181 | if (req.status === 200) { | ||
182 | window.ninjaVersion = JSON.parse(req.responseText); | ||
183 | } else { | ||
184 | console.log("Ninja version file could not be loaded"); | ||
185 | } | ||
186 | } | ||
187 | } | ||
188 | })(req); | ||
189 | req.send(); | ||
171 | // | 190 | // |
172 | var star = document.getElementById('star'); | 191 | var star = document.getElementById('star'); |
173 | // | 192 | // |
174 | njstar(star.getContext("2d")); | 193 | njstar(star.getContext("2d")); |
175 | } | 194 | }; |
195 | |||
176 | function njstar (ctx) { | 196 | function njstar (ctx) { |
177 | ctx.save(); | 197 | ctx.save(); |
178 | ctx.translate(0,0); | 198 | ctx.translate(0,0); |