User Order step1

This commit is contained in:
Kevin Adametz 2020-08-07 16:02:03 +02:00
parent eb55b01b0d
commit a5db985ae8
90 changed files with 6439 additions and 421 deletions

View file

@ -98,9 +98,12 @@ $(function () {
}
var data = {};
$.each(button.data(), function(index, value){
data[index] = value;
if(index !== 'bs.tooltip'){
data[index] = value;
}
});
//console.log(data);
console.log(data);
loadModalInner(this, data);
});
@ -111,7 +114,9 @@ $(function () {
button = $(this);
var data = {};
$.each(button.data(), function(index, value){
data[index] = value;
if(index !== 'bs.tooltip'){
data[index] = value;
}
});
//console.log(data);
loadModalInner(this, data);
@ -133,7 +138,7 @@ $(function () {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
success: function(data) {
//console.log(data);
console.log(data);
if(data.response.modal){
$(data.response.target).find('.modal-dialog').addClass(data.response.modal);
}