Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio_mebibou
Commits
82bd4819
Commit
82bd4819
authored
Feb 12, 2017
by
Tomáš Peterka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update manage_documents.rst
parent
d83a1306
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
docs/manage_documents.rst
docs/manage_documents.rst
+7
-5
No files found.
docs/manage_documents.rst
View file @
82bd4819
...
@@ -199,11 +199,13 @@ The following example creates a new jIO in localStorage and then posts a documen
...
@@ -199,11 +199,13 @@ The following example creates a new jIO in localStorage and then posts a documen
description : 'Images Compilation'
description : 'Images Compilation'
})
})
.push(undefined, function(err) {
.push(undefined, function(err) {
// pushes error handler with RSVP.Queue push method
// nothing to do with JIO itself
return alert('Error posting the document metadata');
return alert('Error posting the document metadata');
});
});
// post a thumbnail attachment
// post a thumbnail attachment
jio_instance.putAttachment('metadat
d
a',
jio_instance.putAttachment('metadata',
'thumbnail',
'thumbnail',
new Blob([my_image], {type: 'image/jpeg'})
new Blob([my_image], {type: 'image/jpeg'})
).push(undefined, function(err) {
).push(undefined, function(err) {
...
@@ -211,13 +213,13 @@ The following example creates a new jIO in localStorage and then posts a documen
...
@@ -211,13 +213,13 @@ The following example creates a new jIO in localStorage and then posts a documen
});
});
// post video attachment
// post video attachment
jio_instance.putAttachment('metadat
d
a',
jio_instance.putAttachment('metadata',
'video',
'video',
new Blob([my_video], {type: 'video/ogg'})
new Blob([my_video], {type: 'video/ogg'})
).push(undefined, function(err) {
).push(undefined, function(err) {
return alert('Error attaching video');
return alert('Error attaching video');
});
});
alert('Video Stored');
alert('Video Stored');
indexedDB Storage now contains:
indexedDB Storage now contains:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment