Fixing JSON error in FileEntry docs
Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/commit/9c4d27ac Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/tree/9c4d27ac Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/diff/9c4d27ac Branch: refs/heads/master Commit: 9c4d27ac9b61611da798796887eee8a6c704919a Parents: bb054df Author: macdonst <[email protected]> Authored: Fri Jun 1 08:47:56 2012 -0400 Committer: macdonst <[email protected]> Committed: Fri Jun 1 08:50:07 2012 -0400 ---------------------------------------------------------------------- .../cordova/file/directoryentry/directoryentry.md | 2 +- docs/en/edge/cordova/file/fileentry/fileentry.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/blob/9c4d27ac/docs/en/edge/cordova/file/directoryentry/directoryentry.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/cordova/file/directoryentry/directoryentry.md b/docs/en/edge/cordova/file/directoryentry/directoryentry.md index 006f466..bafb26b 100644 --- a/docs/en/edge/cordova/file/directoryentry/directoryentry.md +++ b/docs/en/edge/cordova/file/directoryentry/directoryentry.md @@ -108,7 +108,7 @@ __Quick Example__ } // Set the metadata - entry.setMetadata(success, fail, { "com.apple.MobileBackup", 1}); + entry.setMetadata(success, fail, { "com.apple.MobileBackup": 1}); __iOS Quirk__ - only the **"com.apple.MobileBackup"** extended attribute is supported. Set the value to **1** to NOT enable the directory to be backed up by iCloud. Set the value to **0** to re-enable the directory to be backed up by iCloud. http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/blob/9c4d27ac/docs/en/edge/cordova/file/fileentry/fileentry.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/cordova/file/fileentry/fileentry.md b/docs/en/edge/cordova/file/fileentry/fileentry.md index 36d3f54..cc023fe 100644 --- a/docs/en/edge/cordova/file/fileentry/fileentry.md +++ b/docs/en/edge/cordova/file/fileentry/fileentry.md @@ -107,7 +107,7 @@ __Quick Example__ } // Set the metadata - entry.setMetadata(success, fail, { "com.apple.MobileBackup", 1}); + entry.setMetadata(success, fail, { "com.apple.MobileBackup": 1}); __iOS Quirk__ - only the **"com.apple.MobileBackup"** extended attribute is supported. Set the value to **1** to NOT enable the file to be backed up by iCloud. Set the value to **0** to re-enable the file to be backed up by iCloud.
