bebeboutik/modules/landingpages/landingpages.js

11 lines
277 B
JavaScript
Raw Normal View History

2016-01-04 12:49:26 +01:00
function itemEdition(linkId) {
document.location.href = current_location + "&edit_lp&id_lp=" + linkId;
}
function itemDeletion(linkId) {
var ok = confirm(i18n_delete)
if(ok == true) {
document.location.href = current_location + "&id_lp=" + linkId + "&delete_lp=1";
}
}