Create ChefWorker and move bake process into it

This commit is contained in:
n1474335 2017-07-05 00:11:57 +01:00
parent ff78c72d54
commit 760ab688b2
3 changed files with 150 additions and 30 deletions

View file

@ -22,6 +22,8 @@
background-color: transparent;
white-space: pre-wrap;
word-wrap: break-word;
transition: all 0.5s ease;
}
#output-html {
@ -90,10 +92,10 @@
@keyframes spinner {
from {
transform:rotate(0deg);
transform: rotate(0deg);
}
to {
transform:rotate(359deg);
transform: rotate(359deg);
}
}