mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-23 17:47:56 +01:00
Send total number of lines to be printed along with every gcode chunk.
This commit is contained in:
parent
a9f7fe1c78
commit
4f5e1143b4
@ -177,7 +177,7 @@ function Printer() {
|
||||
}
|
||||
var gcodePart = this.gcode.slice(sendIndex, sendIndex+sendLength);
|
||||
|
||||
var postData = { gcode: gcodePart.join("\n"), first: firstOne, start: start};
|
||||
var postData = { gcode: gcodePart.join("\n"), total_lines: this.gcode.length, first: firstOne, start: start};
|
||||
var self = this;
|
||||
if (communicateWithWifibox) {
|
||||
$.ajax({
|
||||
|
Loading…
Reference in New Issue
Block a user