diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 12:12:15 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 12:12:15 -0800 |
commit | cf5947187de4390ad0440940f323470b37befbc8 (patch) | |
tree | 715f8aaf730273f61650cbb6d70fa9f99a3475af /src | |
parent | fbfcffe2ee61ed39598f883523455ad713690aea (diff) |
make root writable by default, removing the need to add root.write = true
Diffstat (limited to 'src')
-rw-r--r-- | src/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index bdaf3e00..b07ab21d 100644 --- a/src/library.js +++ b/src/library.js @@ -291,7 +291,7 @@ LibraryManager.library = { // The main file system tree. All the contents are inside this. FS.root = { read: true, - write: false, + write: true, isFolder: true, isDevice: false, timestamp: Date.now(), |