Modifica delle route per i tags

This commit is contained in:
2023-05-30 10:59:36 +02:00
parent 51b0d71204
commit 6f16876a69
5 changed files with 31 additions and 18 deletions

View File

@@ -3,7 +3,7 @@ $(document).ready(function() {
responsive: true
});
$(document).on('click', '.open_modal', function() {
var url = "tagmodify";
var url = "tags/modify";
var riga_id = $(this).val();
$.getJSON(url + '/' + riga_id, function(data) {
//success data
@@ -18,4 +18,4 @@ $(document).ready(function() {
$('#myModal_new').modal('show');
});
});
});