Move CRUD edit button into the form DOM element
This commit is contained in:
+2
-1
@@ -25,6 +25,7 @@ $(document).ready(function() {
|
||||
|
||||
// Edit
|
||||
$('.js-edit').on('click', function(event) {
|
||||
event.preventDefault();
|
||||
|
||||
// Trigger HTML5 form validation
|
||||
var valid = $('#form-edit')[0].reportValidity();
|
||||
@@ -32,7 +33,7 @@ $(document).ready(function() {
|
||||
return;
|
||||
}
|
||||
|
||||
var href = $(this).attr('href');
|
||||
var href = $(this).attr('data-href');
|
||||
$.ajax({
|
||||
url: href,
|
||||
type: "PUT",
|
||||
|
||||
Reference in New Issue
Block a user