Compare commits
2 Commits
AFLOW-31-l
...
master
Author | SHA1 | Date | |
---|---|---|---|
db1d29f510 | |||
f3e306b084 |
@ -23,7 +23,7 @@
|
|||||||
"@sentry/tracing": "^7.52.1",
|
"@sentry/tracing": "^7.52.1",
|
||||||
"body-parser": "^1.20.2",
|
"body-parser": "^1.20.2",
|
||||||
"bootstrap": "^5.3.0-alpha3",
|
"bootstrap": "^5.3.0-alpha3",
|
||||||
"bootstrap-icons": "^1.10.5",
|
"bootstrap-icons": "^1.11.0",
|
||||||
"bootstrap-table": "^1.22.1",
|
"bootstrap-table": "^1.22.1",
|
||||||
"csv": "^6.2.11",
|
"csv": "^6.2.11",
|
||||||
"eta": "^2.0.1",
|
"eta": "^2.0.1",
|
||||||
|
@ -3,6 +3,7 @@ function randomInRange(min, max) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function doTheConfetti() {
|
function doTheConfetti() {
|
||||||
|
// Create confetti
|
||||||
confetti({
|
confetti({
|
||||||
angle: randomInRange(90, 110),
|
angle: randomInRange(90, 110),
|
||||||
spread: randomInRange(70, 120),
|
spread: randomInRange(70, 120),
|
||||||
|
@ -8,6 +8,16 @@ function primeCreateNew() {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function triggerDuplicationDialog(sourceItemId) {
|
||||||
|
// Clear the form
|
||||||
|
$('.form-control').val('');
|
||||||
|
const form = document.getElementById('ItemModalForm');
|
||||||
|
document.getElementById('itemModifyModalLabel').innerText= "Duplicate an item";
|
||||||
|
form.setAttribute('method', 'POST');
|
||||||
|
getDataForEdit(sourceItemId);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
function primeEdit() {
|
function primeEdit() {
|
||||||
const form = document.getElementById('ItemModalForm');
|
const form = document.getElementById('ItemModalForm');
|
||||||
document.getElementById('itemModifyModalLabel').innerText = 'Edit an item';
|
document.getElementById('itemModifyModalLabel').innerText = 'Edit an item';
|
||||||
|
@ -49,6 +49,9 @@ function dataResponseHandler(json) {
|
|||||||
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModifyModal" onclick="primeEdit(); getDataForEdit('${item.id}')">
|
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModifyModal" onclick="primeEdit(); getDataForEdit('${item.id}')">
|
||||||
<i class="bi bi-pencil"></i>
|
<i class="bi bi-pencil"></i>
|
||||||
</button>
|
</button>
|
||||||
|
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#itemModifyModal" onclick="triggerDuplicationDialog('${item.id}')">
|
||||||
|
<i class="bi bi-copy"></i>
|
||||||
|
</button>
|
||||||
<button class="btn btn-danger" onclick="preFillDeleteModalNxt('${item.id}','items','Item')" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
|
<button class="btn btn-danger" onclick="preFillDeleteModalNxt('${item.id}','items','Item')" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
|
||||||
<i class="bi bi-trash"></i>
|
<i class="bi bi-trash"></i>
|
||||||
</button>`
|
</button>`
|
||||||
|
Loading…
Reference in New Issue
Block a user