replace new css files location to modules/themeconfigurator/css

This commit is contained in:
Alexander Grosul
2013-11-18 20:07:24 +02:00
parent 36baadad1a
commit b6c5cd7c63
18 changed files with 1619 additions and 107 deletions
@@ -257,13 +257,13 @@ function wishlistProductsIdsRemove(id){
wishlistProductsIds.splice($.inArray(parseInt(id),wishlistProductsIds), 1)
}
function wishlistRefreshStatus(){
$('.addToWishlist').each(function() {
if ($.inArray(parseInt($(this).prop('rel')),wishlistProductsIds)!= -1){
$(this).addClass('ckecked');
}
else
$(this).removeClass('ckecked');
});
$('.addToWishlist').each(function() {
if ($.inArray(parseInt($(this).prop('rel')),wishlistProductsIds)!= -1){
$(this).addClass('checked');
}
else
$(this).removeClass('checked');
});
}
$(document).ready(function() {
if (typeof wishlistProductsIds == 'undefined') {