I would like to change just one JavaScript function in the child theme but without having to insert all the JavaScript code of the parent theme.
How do I change only this function (I need change only count = Math.ceil(width / size)
line):
function slickAutoResponsive(slider, max, size) {
if (!max){
max = 5;
}
if (!size){
size = 380;
}
var width = slider.width(),
count = Math.ceil(width / size);
if (count < 1) count = 1;
if (count > max) count = max;
return count;
}
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742385363a4433948.html
评论列表(0条)