aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorArmen Kesablyan2012-02-07 16:51:14 -0800
committerArmen Kesablyan2012-02-07 16:51:14 -0800
commit8110e01dc5093ac6baf621103dcaa5f769e5be92 (patch)
treeecf339e3097b6ba25d81cbe44d913ee67591bf4b /index.html
parent5f506542d28e12b707c3bfa41b53383519838477 (diff)
parent668510892537eaaeb2e11520831d87b44b2489b7 (diff)
downloadninja-8110e01dc5093ac6baf621103dcaa5f769e5be92.tar.gz
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal
Diffstat (limited to 'index.html')
-rw-r--r--index.html22
1 files changed, 21 insertions, 1 deletions
diff --git a/index.html b/index.html
index 44f8ec7e..f3018823 100644
--- a/index.html
+++ b/index.html
@@ -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);