Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
1
Download as
Email Patches
Plain Diff
Browse Files
Authored by
陈峰
8 years ago
Commit
39f251b08f8f0721eb3a4f1486e147de2e9245a2
1 parent
45de7ffa
修复修改filter插件后经典店铺造成不兼容问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
public/js/product/shop.classics.page.js
public/js/product/shop.classics.page.js
View file @
39f251b
...
...
@@ -667,14 +667,14 @@ function search(opt, callback) {
bindGoodThumbClick
();
setTimeout
(
function
()
{
callback
&&
callback
();
callback
&&
typeof
callback
===
'function'
&&
callback
();
},
0
);
},
error
:
function
()
{
tip
.
show
(
'网络断开连接了~'
);
searching
=
false
;
loading
.
hideLoadingMask
();
callback
&&
callback
();
callback
&&
typeof
callback
===
'function'
&&
callback
();
陈轩
@chenxuan commented
8 years ago
typeof callback === 'function' && callback()
}
});
}
...
...
Please
register
or
login
to post a comment