aboutsummaryrefslogtreecommitdiff
path: root/js/io/system
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-24 13:27:04 -0800
committerValerio Virgillito2012-02-24 13:27:04 -0800
commit2b672f6508a849b8023b0bc114ad15e9ddca5adc (patch)
tree830106160baa5a6dfe90e41d7d8d594b6e1be32f /js/io/system
parentecbada601290456e63233968ad8794869c4880b1 (diff)
downloadninja-2b672f6508a849b8023b0bc114ad15e9ddca5adc.tar.gz
prefixing the local storage and using the new local-storage object.
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/io/system')
-rwxr-xr-xjs/io/system/coreioapi.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/io/system/coreioapi.js b/js/io/system/coreioapi.js
index 2051da43..f428a229 100755
--- a/js/io/system/coreioapi.js
+++ b/js/io/system/coreioapi.js
@@ -28,9 +28,9 @@ exports.CoreIoApi = Montage.create(Component, {
28 value: function () { 28 value: function () {
29 //////////////////////////////////////////////////////////// 29 ////////////////////////////////////////////////////////////
30 //Checking for local storage of URL for IO 30 //Checking for local storage of URL for IO
31 if (window.localStorage['ioRootUrl']) { 31 if (this.application.localStorage.getItem("ioRootUrl")) {
32 //Getting URL from local storage 32 //Getting URL from local storage
33 this.rootUrl = window.localStorage['ioRootUrl']; 33 this.rootUrl = this.application.localStorage.getItem("ioRootUrl");
34 //Checks for IO API to be active 34 //Checks for IO API to be active
35 this.ioServiceDetected = this.cloudAvailable(); 35 this.ioServiceDetected = this.cloudAvailable();
36 } else { 36 } else {
@@ -156,7 +156,7 @@ exports.CoreIoApi = Montage.create(Component, {
156 return this._rootUrl; 156 return this._rootUrl;
157 }, 157 },
158 set: function(value) { 158 set: function(value) {
159 this._rootUrl = window.localStorage["ioRootUrl"] = value; 159 this._rootUrl = this.application.localStorage.setItem("ioRootUrl", value);
160 } 160 }
161 }, 161 },
162 //////////////////////////////////////////////////////////////////// 162 ////////////////////////////////////////////////////////////////////