Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio
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
Tomáš Peterka
jio
Commits
6656b85b
Commit
6656b85b
authored
Feb 12, 2017
by
Tomáš Peterka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add quotes in replicate_storage.rst
parent
d83a1306
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
docs/replicate_storage.rst
docs/replicate_storage.rst
+5
-5
No files found.
docs/replicate_storage.rst
View file @
6656b85b
...
@@ -68,11 +68,11 @@ update is executed.
...
@@ -68,11 +68,11 @@ update is executed.
});
});
#. 1)
Create the namecard on your smartphone:
#.
Create the namecard on your smartphone:
.. code-block:: javascript
.. code-block:: javascript
jio_instance.put(
"myNameCard"
, {
jio_instance.put(
'myNameCard'
, {
email: 'jb@td.com'
email: 'jb@td.com'
}).then(function (response) {
}).then(function (response) {
// response -> 'myNameCard'
// response -> 'myNameCard'
...
@@ -80,11 +80,11 @@ update is executed.
...
@@ -80,11 +80,11 @@ update is executed.
This will create the document on your WebDAV and local storage
This will create the document on your WebDAV and local storage
#. 2)
Someone else updates your shared namecard on WebDAV:
#.
Someone else updates your shared namecard on WebDAV:
.. code-block:: javascript
.. code-block:: javascript
jio_instance.put(
myNameCard
, {
jio_instance.put(
'myNameCard'
, {
email: 'kyle@td.com',
email: 'kyle@td.com',
}).then(function (response) {
}).then(function (response) {
// response -> 'myNameCard'
// response -> 'myNameCard'
...
@@ -93,7 +93,7 @@ update is executed.
...
@@ -93,7 +93,7 @@ update is executed.
Your smartphone is offline, so now you will have one version on
Your smartphone is offline, so now you will have one version on
your smartphone and another version on WebDAV on your PC.
your smartphone and another version on WebDAV on your PC.
#. 3)
Later, your smartphone is online and you modify your email:
#.
Later, your smartphone is online and you modify your email:
.. code-block:: javascript
.. code-block:: javascript
...
...
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