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:
Gina Häußge 2016-10-26 11:03:40 +02:00 committed by GitHub
commit 35cf623f81

View file

@ -288,7 +288,12 @@ $(function() {
};
self.cancel = function() {
OctoPrint.job.cancel();
showConfirmationDialog({
message: gettext("This will cancel your print."),
onproceed: function() {
OctoPrint.job.cancel();
}
});
};
}