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
Plain Diff
Browse Files
Authored by
Lynnic
9 years ago
Commit
3c1d295a7e725aac533f6ecc465df8ceba87e897
2 parents
69c34670
3c2ce1f1
Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
8 deletions
static/js/common.js
static/js/product/detail/desc.js
static/js/product/detail/detail.js
static/js/common.js
View file @
3c1d295
...
...
@@ -160,7 +160,6 @@ $header.on('touchstart', 'a', function() {
$
(
this
).
removeClass
(
'highlight'
);
});
//暴露公共接口
window
.
cookie
=
cookie
;
...
...
static/js/product/detail/desc.js
View file @
3c1d295
/**
* 商品详情
* @author: liangzhifeng<zhifeng.liang@yoho.cn>
* @date: 2015/11/18
*/
\ No newline at end of file
///**
// * 商品详情
// * @author: liangzhifeng<zhifeng.liang@yoho.cn>
// * @date: 2015/11/18
// */
//var $ = require('jquery'),
// Hammer = require('yoho.hammer'),
// lazyLoad = require('yoho.lazyload');
//
//var loading = require('../../plugin/loading');
//
//var navHammer,
// winH = $(window).height(),
// searching = false,
// num,
// url;
//
//function scrollHandler() {
// if ($(window).scrollTop() + winH >= $(document).height() - 50) {
// //search();
// }
//}
//
//function search() {
// if (searching) {
// return;
// }
// searching = true;
//
// loading.showLoadingMask();
//
// //num = $goodList.find('.good-info').length;
// $.ajax({
// type: 'GET',
// url: url,
// data: {
// page: page + 1
// },
// success: function(data) {
//
// num = $goodList.find('.good-info').length;
//
// $goodList.append(data);
//
// // 2015/10/31 fei.hong: 修复第一页分页不显示图片的问题
// if (num === 0) {
// lazyLoad($goodList.find('.good-info').find('img.lazy'));
// } else {
// lazyLoad($goodList.find('.good-info:gt(' + (num - 1) + ')').find('img.lazy'));
// }
//
// searching = false;
// loading.hideLoadingMask();
// page++;
// },
// error: function() {
// tip.show('网络断开连接了~');
// searching = false;
// loading.hideLoadingMask();
// }
// });
//}
//
////srcoll to load more
//$(window).scroll(function () {
// window.requestAnimationFrame(scrollHandler);
//});
//
...
...
static/js/product/detail/detail.js
View file @
3c1d295
...
...
@@ -9,13 +9,13 @@
Handlebars
=
require
(
'yoho.handlebars'
);
var
goodsSwiper
,
// winH = $(window).height(),
sizeSwiper
,
refSwiper
,
commentsNum
,
handleHelper
;
require
(
'./desc'
);
lazyLoad
(
$
(
'img.lazy'
));
goodsSwiper
=
new
Swiper
(
'.banner-swiper'
,
{
...
...
Please
register
or
login
to post a comment