Authored by Rock Zhang

Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop

@@ -132,7 +132,7 @@ function search(opt) { @@ -132,7 +132,7 @@ function search(opt) {
132 } 132 }
133 133
134 //导航类别 134 //导航类别
135 - if ($pre === undefined || $pre.hasClass('new')) { 135 + if ($pre.hasClass('new')) {
136 navType = 'newest'; 136 navType = 'newest';
137 } else if ($pre.hasClass('price')) { 137 } else if ($pre.hasClass('price')) {
138 navType = 'price'; 138 navType = 'price';
@@ -214,7 +214,7 @@ filter.registerCbFn(search); @@ -214,7 +214,7 @@ filter.registerCbFn(search);
214 //3.筛选无active时点击展开筛选面板 214 //3.筛选无active时点击展开筛选面板
215 //4.筛选有active时点击隐藏筛选面板并恢复点击筛选前active项的active状态 215 //4.筛选有active时点击隐藏筛选面板并恢复点击筛选前active项的active状态
216 //5.当前active为筛选并且点击其他项时,隐藏筛选面板 216 //5.当前active为筛选并且点击其他项时,隐藏筛选面板
217 -$listNav.delegate('li', 'touchstart', function() { 217 +$listNav.delegate('li', 'tap', function() {
218 var $this = $(this), 218 var $this = $(this),
219 nav, 219 nav,
220 navType, 220 navType,
@@ -308,6 +308,8 @@ $(window).scroll(function() { @@ -308,6 +308,8 @@ $(window).scroll(function() {
308 //当scroll到1/4$goodsContainer高度后继续请求下一页数据 308 //当scroll到1/4$goodsContainer高度后继续请求下一页数据
309 if ($(window).scrollTop() + winH > 309 if ($(window).scrollTop() + winH >
310 $(document).height() - 0.25 * $goodsContainer.height()) { 310 $(document).height() - 0.25 * $goodsContainer.height()) {
311 - search(); 311 + if ($pre != undefined) {
  312 + search();
  313 + }
312 } 314 }
313 }); 315 });
@@ -151,7 +151,7 @@ function search(opt) { @@ -151,7 +151,7 @@ function search(opt) {
151 } 151 }
152 152
153 //导航类别 153 //导航类别
154 - if ($pre === undefined || $pre.hasClass('today')) { 154 + if ($pre.hasClass('today')) {
155 navType = 'today'; 155 navType = 'today';
156 dayLimit = 1; 156 dayLimit = 1;
157 } else if ($pre.hasClass('week')) { 157 } else if ($pre.hasClass('week')) {
@@ -314,6 +314,8 @@ $(window).scroll(function() { @@ -314,6 +314,8 @@ $(window).scroll(function() {
314 //当scroll到1/4$goodsContainer高度后继续请求下一页数据 314 //当scroll到1/4$goodsContainer高度后继续请求下一页数据
315 if ($(window).scrollTop() + winH > 315 if ($(window).scrollTop() + winH >
316 $(document).height() - 0.25 * $goodsContainer.height()) { 316 $(document).height() - 0.25 * $goodsContainer.height()) {
317 - search(); 317 + if ($pre !== undefined) {
  318 + search();
  319 + }
318 } 320 }
319 }); 321 });