Merge pull request #1550 from dattas/feature/cancel-confirmation
Add confirmation dialog to cancel to prevent accidental cancel of prints
This commit is contained in:
commit
35cf623f81
1 changed files with 6 additions and 1 deletions
|
|
@ -288,7 +288,12 @@ $(function() {
|
|||
};
|
||||
|
||||
self.cancel = function() {
|
||||
OctoPrint.job.cancel();
|
||||
showConfirmationDialog({
|
||||
message: gettext("This will cancel your print."),
|
||||
onproceed: function() {
|
||||
OctoPrint.job.cancel();
|
||||
}
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue