Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
xuqi
10 years ago
Commit
fe07d7fdc5e112b0061e2c5e44641e42f729c300
1 parent
6b27e47f
data.data->data
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
static/js/product/list.js
static/js/product/list.js
View file @
fe07d7f
...
...
@@ -171,7 +171,7 @@ function search(opt) {
break
;
}
if
(
data
.
data
===
' '
)
{
if
(
data
===
' '
)
{
nav
.
end
=
true
;
if
(
nav
.
reload
)
{
...
...
@@ -179,9 +179,9 @@ function search(opt) {
}
}
else
{
if
(
nav
.
reload
)
{
$container
.
html
(
data
.
data
);
$container
.
html
(
data
);
}
else
{
$container
.
append
(
data
.
data
);
$container
.
append
(
data
);
}
lazyLoad
(
$container
.
find
(
'.lazy'
));
...
...
Please
register
or
login
to post a comment