Add confirmation dialog to cancel to prevent accidental cancel of print (which is hard to undo!)

This commit is contained in:
Dattas Moonchaser 2016-10-19 15:22:15 -06:00
parent b38d1810dc
commit 7fb2745f8f

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();
}
});
};
}