aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-03-21 12:03:36 -0700
committerJose Antonio Marquez2012-03-21 12:03:36 -0700
commit873bb850a44d3b388fe6742c6aadc6e0caaae30b (patch)
tree25444aaca7ea18ea48d1a36e93daed2d17d8c6bc
parentfa3ebf391db168d7c4ebcc86450c66684eeeb5cd (diff)
downloadninja-873bb850a44d3b388fe6742c6aadc6e0caaae30b.tar.gz
Fix: Chrome 19 I/O Bug
Fixed creating new files.
-rwxr-xr-xjs/io/system/coreioapi.js4
-rw-r--r--manifest.json4
2 files changed, 3 insertions, 5 deletions
diff --git a/js/io/system/coreioapi.js b/js/io/system/coreioapi.js
index f428a229..ae249480 100755
--- a/js/io/system/coreioapi.js
+++ b/js/io/system/coreioapi.js
@@ -393,12 +393,12 @@ exports.CoreIoApi = Montage.create(Component, {
393 xhr = new XMLHttpRequest(); 393 xhr = new XMLHttpRequest();
394 // 394 //
395 xhr.open("POST", serviceURL, false); 395 xhr.open("POST", serviceURL, false);
396 xhr.responseType = "arraybuffer"; 396 //xhr.responseType = "arraybuffer";
397 if(file.contentType && file.contentType.length) 397 if(file.contentType && file.contentType.length)
398 xhr.setRequestHeader("Content-Type", file.contentType); 398 xhr.setRequestHeader("Content-Type", file.contentType);
399 else 399 else
400 xhr.setRequestHeader("Content-Type", "text/plain"); 400 xhr.setRequestHeader("Content-Type", "text/plain");
401 401
402 if (file.contents) 402 if (file.contents)
403 xhr.send(file.contents); 403 xhr.send(file.contents);
404 else 404 else
diff --git a/manifest.json b/manifest.json
index 80d8a5be..0500101b 100644
--- a/manifest.json
+++ b/manifest.json
@@ -12,9 +12,7 @@
12 }, 12 },
13 "permissions": [ 13 "permissions": [
14 "unlimitedStorage", 14 "unlimitedStorage",
15 "notifications", 15 "notifications"
16 "webRequest",
17 "webRequestBlocking"
18 ], 16 ],
19 "requirements": { 17 "requirements": {
20 "3D": { 18 "3D": {