Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio-main
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
Hardik Juneja
jio-main
Commits
d7c4e8ca
Commit
d7c4e8ca
authored
Apr 17, 2014
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bad query options management fixed
parent
e6e9d5b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
src/jio.storage/localstorage.js
src/jio.storage/localstorage.js
+2
-3
No files found.
src/jio.storage/localstorage.js
View file @
d7c4e8ca
...
@@ -415,8 +415,7 @@
...
@@ -415,8 +415,7 @@
"
/[^/]+$
"
"
/[^/]+$
"
);
);
if
(
options
.
query
===
undefined
&&
options
.
sort_on
===
undefined
&&
if
(
options
.
query
===
undefined
&&
options
.
sort_on
===
undefined
&&
options
.
select_list
===
undefined
&&
options
.
select_list
===
undefined
)
{
options
.
include_docs
===
undefined
)
{
rows
=
[];
rows
=
[];
for
(
i
in
this
.
_database
)
{
for
(
i
in
this
.
_database
)
{
if
(
this
.
_database
.
hasOwnProperty
(
i
))
{
if
(
this
.
_database
.
hasOwnProperty
(
i
))
{
...
@@ -425,7 +424,7 @@
...
@@ -425,7 +424,7 @@
row
=
{
value
:
{}
};
row
=
{
value
:
{}
};
row
.
id
=
i
.
split
(
'
/
'
).
slice
(
-
1
)[
0
];
row
.
id
=
i
.
split
(
'
/
'
).
slice
(
-
1
)[
0
];
if
(
options
.
include_docs
)
{
if
(
options
.
include_docs
)
{
row
.
doc
=
JSON
.
parse
(
this
.
_storage
.
getItem
(
i
)
);
row
.
doc
=
this
.
_storage
.
getItem
(
i
);
}
}
rows
.
push
(
row
);
rows
.
push
(
row
);
}
}
...
...
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