aboutsummaryrefslogtreecommitdiff
path: root/js/io/system/fileio.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/io/system/fileio.js')
-rwxr-xr-xjs/io/system/fileio.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/js/io/system/fileio.js b/js/io/system/fileio.js
index b3158a68..38ab05e8 100755
--- a/js/io/system/fileio.js
+++ b/js/io/system/fileio.js
@@ -28,7 +28,7 @@ exports.FileIo = Montage.create(Object.prototype, {
28 enumerable: true, 28 enumerable: true,
29 value: function(file) { 29 value: function(file) {
30 //Checking for API to be available 30 //Checking for API to be available
31 if (!CoreIoApi.isIoServiceActive()) { 31 if (!CoreIoApi.cloudAvailable()) {
32 //API not available, no IO action taken 32 //API not available, no IO action taken
33 return null; 33 return null;
34 } 34 }
@@ -78,6 +78,12 @@ exports.FileIo = Montage.create(Object.prototype, {
78 value: function() { 78 value: function() {
79 // 79 //
80 } 80 }
81 },
82 infoFile: {
83 enumerable: true,
84 value: function() {
85 //
86 }
81 } 87 }
82 88
83 89