@@ -97,3 +97,10 @@ function opendistrib_fix_width_sidebar() { | |||
}); | |||
$('#left .fixed').show() ; | |||
} | |||
function opendistrib_scroll(id) { | |||
if($("#"+id).size()) | |||
$('html,body').animate({ | |||
scrollTop: $("#"+id).offset().top}, | |||
1000); | |||
} |
@@ -108,7 +108,7 @@ var app = new Vue({ | |||
this.pointSaleActive = this.getPointSale(idPointSale) ; | |||
this.idPointSaleActive = idPointSale ; | |||
boulange_scroll('step-date') ; | |||
opendistrib_scroll('step-date') ; | |||
}, | |||
getPointSale: function(idPointSale) { | |||
for(var key in this.pointsSale) { | |||
@@ -127,7 +127,7 @@ var app = new Vue({ | |||
if(count == 1 && this.lastCountDays == 0) { | |||
this.lastCountDays = count ; | |||
boulange_scroll('step-days') ; | |||
opendistrib_scroll('step-days') ; | |||
} | |||
}, | |||
checkProductAvailable: function(product) { |