aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html18
-rw-r--r--js/ninja.reel/ninja.js1
-rw-r--r--versions.json8
3 files changed, 26 insertions, 1 deletions
diff --git a/index.html b/index.html
index 44f8ec7e..5fa4790c 100644
--- a/index.html
+++ b/index.html
@@ -168,11 +168,27 @@
168 168
169 <script type="text/javascript"> 169 <script type="text/javascript">
170 window.onload = function() { 170 window.onload = function() {
171 // Load the version json
172 var req = new XMLHttpRequest();
173 req.open("GET", "versions.json");
174 req.onreadystatechange = (function(req) {
175 return function(event) {
176 if (req.readyState === 4) {
177 if (req.status === 200) {
178 window.ninjaVersion = JSON.parse(req.responseText);
179 } else {
180 console.log("Ninja version file could not be loaded");
181 }
182 }
183 }
184 })(req);
185 req.send();
171 // 186 //
172 var star = document.getElementById('star'); 187 var star = document.getElementById('star');
173 // 188 //
174 njstar(star.getContext("2d")); 189 njstar(star.getContext("2d"));
175 } 190 };
191
176 function njstar (ctx) { 192 function njstar (ctx) {
177 ctx.save(); 193 ctx.save();
178 ctx.translate(0,0); 194 ctx.translate(0,0);
diff --git a/js/ninja.reel/ninja.js b/js/ninja.reel/ninja.js
index bc31e0e1..75ec7fcc 100644
--- a/js/ninja.reel/ninja.js
+++ b/js/ninja.reel/ninja.js
@@ -36,6 +36,7 @@ exports.Ninja = Montage.create(Component, {
36 36
37 prepareForDraw: { 37 prepareForDraw: {
38 value: function() { 38 value: function() {
39 console.log("Loading Ninja --> ", window.ninjaVersion.ninja.version);
39 40
40 this.application.ninja = this; 41 this.application.ninja = this;
41 42
diff --git a/versions.json b/versions.json
new file mode 100644
index 00000000..2d568314
--- /dev/null
+++ b/versions.json
@@ -0,0 +1,8 @@
1{
2 "ninja": {
3 "version": "0.5.0"
4 },
5 "montage": {
6 "version": "0.5.1"
7 }
8} \ No newline at end of file