diff options
author | Jose Antonio Marquez | 2012-02-16 15:21:33 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-02-16 15:21:33 -0800 |
commit | b88cfa79ed80a7eb473f4959b10b7f1d565b80f4 (patch) | |
tree | 324649327481cd3a6d3aad0b136ac601f47448b4 /js/io/ui | |
parent | 8e3697a61fd44ffa9bcf9555f7b43143606753e8 (diff) | |
download | ninja-b88cfa79ed80a7eb473f4959b10b7f1d565b80f4.tar.gz |
Adding Cloud app download URLs
Diffstat (limited to 'js/io/ui')
-rwxr-xr-x | js/io/ui/cloudpopup.reel/cloudpopup.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/js/io/ui/cloudpopup.reel/cloudpopup.js b/js/io/ui/cloudpopup.reel/cloudpopup.js index e5bad98e..62f7e522 100755 --- a/js/io/ui/cloudpopup.reel/cloudpopup.js +++ b/js/io/ui/cloudpopup.reel/cloudpopup.js | |||
@@ -88,7 +88,13 @@ exports.CloudPopup = Montage.create(Component, { | |||
88 | downloadCloudApp: { | 88 | downloadCloudApp: { |
89 | enumerable: false, | 89 | enumerable: false, |
90 | value: function() { | 90 | value: function() { |
91 | console.log(this._os); | 91 | if(this._os === 'mac') { |
92 | location.href = '/ninja_localcloud_for_mac.zip'; | ||
93 | } else if (this._os === 'win') { | ||
94 | location.href = '/ninja_localcloud_for_windows.zip'; | ||
95 | } else { | ||
96 | alert('Your operating system is not supported by the Ninja Local Cloud App.'); | ||
97 | } | ||
92 | } | 98 | } |
93 | }, | 99 | }, |
94 | //////////////////////////////////////////////////////////////////// | 100 | //////////////////////////////////////////////////////////////////// |