mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 06:04:08 -08:00
removed dead space
This commit is contained in:
parent
a197b730a1
commit
53ddf5ae04
|
@ -418,7 +418,6 @@
|
||||||
// ---------------------------
|
// ---------------------------
|
||||||
// - ASSET STATUS CHART -
|
// - ASSET STATUS CHART -
|
||||||
// ---------------------------
|
// ---------------------------
|
||||||
|
|
||||||
var pieChartCanvas = $("#statusPieChart").get(0).getContext("2d");
|
var pieChartCanvas = $("#statusPieChart").get(0).getContext("2d");
|
||||||
var pieChart = new Chart(pieChartCanvas);
|
var pieChart = new Chart(pieChartCanvas);
|
||||||
var ctx = document.getElementById("statusPieChart");
|
var ctx = document.getElementById("statusPieChart");
|
||||||
|
@ -427,31 +426,27 @@
|
||||||
position: 'top',
|
position: 'top',
|
||||||
responsive: true,
|
responsive: true,
|
||||||
maintainAspectRatio: true,
|
maintainAspectRatio: true,
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: 'GET',
|
type: 'GET',
|
||||||
url: '{{ route('api.statuslabels.assets.bytype') }}',
|
url: '{{ route('api.statuslabels.assets.bytype') }}',
|
||||||
headers: {
|
headers: {
|
||||||
"X-Requested-With": 'XMLHttpRequest',
|
"X-Requested-With": 'XMLHttpRequest',
|
||||||
"X-CSRF-TOKEN": $('meta[name="csrf-token"]').attr('content')
|
"X-CSRF-TOKEN": $('meta[name="csrf-token"]').attr('content')
|
||||||
},
|
},
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
|
var myPieChart = new Chart(ctx,{
|
||||||
var myPieChart = new Chart(ctx, {
|
type : 'doughnut',
|
||||||
type: 'doughnut',
|
data : data,
|
||||||
data: data,
|
options: pieOptions
|
||||||
options: pieOptions
|
});
|
||||||
});
|
},
|
||||||
|
error: function (data) {
|
||||||
},
|
// window.location.reload(true);
|
||||||
error: function (data) {
|
}
|
||||||
|
|
||||||
// window.location.reload(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue