';
}
else
{
mx_rootcat_html += '
';
}
}
$(mx_container_for_cat).html(mx_rootcat_html);
$('.mx_bm-maincat > span > i').click(function()
{
var mx_cat_id = $(this).prev().data('rootcatid');
var mx_container_for_cat_childrens = $(this).parent();
var mx_data_level = parseInt($(this).parent().parent().data('level'));
if ($(this).prev().data('catclicked') != true)
{
$(this).prev().data('catclicked', true);
mx_flag_first_lvl = true;
mx_data_level++;
mxToggleChildren(mx_cat_id, mx_container_for_cat_childrens, mx_data_level);
}
else
{
$(this).parent().parent().find('.mx_bm-mc-level-1').toggle();
}
})
$('.mx_bm-maincat > span i.fa-arrow-circle-down').click(function()
{
console.log('.testest');
$(this).next('i').show();
$(this).hide();
})
$('.mx_bm-maincat > span i.fa-arrow-circle-up').click(function()
{
$(this).prev('i').show();
$(this).hide();
$(this).parent().parent().children('.mx_bm-mc-level.mx_bm-mc-level-1').hide();
})
mxSetActiveMainCategory();
}, {
lang: 'pl_PL', // optional
urlParams: '?limit=15' // optional
});
}
function mxToggleChildren(mx_cat_id, mx_container_for_cat_childrens, mx_data_level)
{
frontAPI.getCategoryChildrens(function (categories) {
var mx_rootcat_html = '';
var mx_rootcat_array = categories['list'];
var mx_rootcat_count = categories['count'];
mx_rootcat_html += '
';
for(mx_rootcat_key in mx_rootcat_array)
{
var mx_rootcat_name = mx_rootcat_array[mx_rootcat_key]['translation']['name'];
var mx_rootcat_id = mx_rootcat_array[mx_rootcat_key]['category_id'];
var mx_rootcat_url = mx_rootcat_array[mx_rootcat_key]['url'];
var mx_rootcat_haschildren_flag = mx_rootcat_array[mx_rootcat_key]['has_children'];
mx_rootcat_html += '
';
}
else
{
mx_rootcat_html += '
'+mx_rootcat_name+'';
}
}
mx_rootcat_html += '
';
$(mx_container_for_cat_childrens).after(mx_rootcat_html);
$('.mx_bm-mc-level-children-1 > i.fa-arrow-circle-down').on("click", function()
{
var mx_cat_id = $(this).parent().find('span > a').data('rootcatid');
var mx_container_for_cat_childrens = $(this).parent().find('span');
var mx_data_level = parseInt($(this).parent().parent().data('level'));
mx_data_level++;
if ($(this).parent().find('span > a').data("catclicked") != true)
{
$(this).parent().find('span > a').data("catclicked", true);
mxToggleChildren(mx_cat_id, mx_container_for_cat_childrens, mx_data_level);
$(this).hide();
$(this).next().show();
}
else
{
$(this).hide();
$(this).next().show();
$(this).parent().find('.mx_bm-mc-level-2').show();
}
})
$('.mx_bm-mc-level-children-1 > i.fa-arrow-circle-up').on("click", function()
{
$(this).hide();
$(this).prev().show();
$(this).parent().find('.mx_bm-mc-level-2').hide();
})
$('.mx_bm-mc-level-children-2 > i.fa-arrow-circle-down').on("click", function()
{
var mx_cat_id = $(this).parent().find('span > a').data('rootcatid');
var mx_container_for_cat_childrens = $(this).parent().find('span');
var mx_data_level = parseInt($(this).parent().parent().data('level'));
mx_data_level++;
if ($(this).parent().find('span > a').data("catclicked") != true)
{
$(this).parent().find('span > a').data("catclicked", true);
mxToggleChildren(mx_cat_id, mx_container_for_cat_childrens, mx_data_level);
$(this).hide();
$(this).next().show();
}
else
{
$(this).hide();
$(this).next().show();
$(this).parent().find('.mx_bm-mc-level-3').show();
}
})
$('.mx_bm-mc-level-children-2 > i.fa-arrow-circle-up').on("click", function()
{
$(this).hide();
$(this).prev().show();
$(this).parent().find('.mx_bm-mc-level-3').hide();
})
$('.mx_bm-mc-level-children-3 > i.fa-arrow-circle-down').on("click", function()
{
var mx_cat_id = $(this).parent().find('span > a').data('rootcatid');
var mx_container_for_cat_childrens = $(this).parent().find('span');
var mx_data_level = parseInt($(this).parent().parent().data('level'));
mx_data_level++;
if ($(this).parent().find('span > a').data("catclicked") != true)
{
$(this).parent().find('span > a').data("catclicked", true);
mxToggleChildren(mx_cat_id, mx_container_for_cat_childrens, mx_data_level);
$(this).hide();
$(this).next().show();
}
else
{
$(this).hide();
$(this).next().show();
$(this).parent().find('.mx_bm-mc-level-4').show();
}
})
$('.mx_bm-mc-level-children-3 > i.fa-arrow-circle-up').on("click", function()
{
$(this).hide();
$(this).prev().show();
$(this).parent().find('.mx_bm-mc-level-4').hide();
})
$('.mx_bm-mc-level-children-4 > i.fa-arrow-circle-down').on("click", function()
{
var mx_cat_id = $(this).parent().find('span > a').data('rootcatid');
var mx_container_for_cat_childrens = $(this).parent().find('span');
var mx_data_level = parseInt($(this).parent().parent().data('level'));
mx_data_level++;
if ($(this).parent().find('span > a').data("catclicked") != true)
{
$(this).parent().find('span > a').data("catclicked", true);
mxToggleChildren(mx_cat_id, mx_container_for_cat_childrens, mx_data_level);
$(this).hide();
$(this).next().show();
}
else
{
$(this).hide();
$(this).next().show();
$(this).parent().find('.mx_bm-mc-level-5').show();
}
})
$('.mx_bm-mc-level-children-4 > i.fa-arrow-circle-up').on("click", function()
{
$(this).hide();
$(this).prev().show();
$(this).parent().find('.mx_bm-mc-level-5').hide();
})
}, {
lang: 'pl_PL', // optional
urlParams: '?limit=50', // optional
id: mx_cat_id
});
}
function APIloader ()
{
if (!window.frontAPI)
{
setTimeout(APIloader, 0);
}
else
{
mxGetRootCat(mx_container_for_cat);
return true;
}
}
APIloader();
});
Scyzoryki Victorinox Cadet
Scyzoryki średnich rozmiarów cechuje wyjątkowa uniwersalność. Doskonale sprawdzą się dla tych osób, które poszukują scyzoryka do użytku codziennego, w najróżniejszych okolicznościach. Takie modele powinny być kompaktowe, by bez problemu zmieściły się do kieszeni. Ważne jest również, aby zestaw funkcji sprzyjał zaradności w codziennych sytuacjach. Wszystkie te cechy bardzo dobrze łączy w sobie Victorinox Cadet Alox.
Victorinox Cadet - 9 praktycznych funkcji
Model Victorinox Cadet oferuje 9 funkcji, które pomagają w życiu codziennym. Co takiego do niego wnoszą? Wystarczy spojrzeć na ich wykaz:
- 1x Duże ostrze,
- Otwieracz do puszek,
- Otwieracz do kapsli,
- Śrubokręt płaski 3 mm,
- Śrubokręt płaski 6 mm,
- Przyrząd do ściągania izolacji,
- Pilniczek,
- Przyrząd do oczyszczania paznokci,
- Kółko do kluczy,
- Budowa scyzoryka.
Mimo sporej ilości elementów całość jest dosyć płaska, dzięki czemu idealnie zmieści się w kieszeni, nie odznaczając się zbyt mocno. Jest on także bardzo gustownie wykonany - do jego produkcji użyto klasycznej okładki Alox. Dzięki wytłoczeniom na jej powierzchni, taki scyzoryk jest o wiele lżejszy i doskonale leży w dłoni, nie ślizgając się. Utwardzona warstwa tlenkowa zabezpiecza ten produkt przed działaniem rdzy. Pierwszy raz pojawiła się ona w 1957 roku przy produkcji scyzoryka Pioneer i jest stosowana do dziś.
Oryginalne scyzoryki Victorinox Cadet
Scyzoryki w okładce Alox wyróżniają się spośród gładkich kuzynów nasyconych kolorem, oferując surową i minimalistyczną elegancję. Opinie użytkowników Victorinoxa Cadet są bardzo pochlebne. Cena takiego produktu natomiast jest podobna do większości cen scyzoryków w średnich rozmiarach, czyli wykazująca bardzo dobry stosunek do możliwości oferowanych przez te modele.
Scyzoryk Victorinox Cadet Alox to bardzo praktyczny wybór. Jeżeli poszukujesz scyzoryka o podobnych parametrach, warto zapoznać się ze szczegółową ofertą sklepu. Oferowana różnorodność pomoże Ci znaleźć model jak najbardziej odpowiadający Twoim potrzebom.