bebeboutik/modules/privatesales_shipping/privatesale.js
2016-11-21 10:11:27 +01:00

11 lines
275 B
JavaScript
Executable File

function itemEdition(linkId) {
document.location.href = current_location + "&edit&id=" + linkId;
}
function itemDeletion(linkId) {
var ok = confirm(i18n_delete)
if(ok == true) {
document.location.href = current_location + "&id=" + linkId + "&delete=1";
}
}