removed print funcs
This commit is contained in:
@@ -244,11 +244,7 @@ module.exports = {
|
||||
|
||||
var file = this.newGcode;
|
||||
var file_name =
|
||||
this.fileName == "default"
|
||||
? file.trim() != ""
|
||||
? formattedFilename + ".ngc"
|
||||
: "default"
|
||||
: this.fileName;
|
||||
this.fileName == "default" ? (file.trim() != "" ? formattedFilename + ".ngc" : "default") : this.fileName;
|
||||
|
||||
if (file.trim() != "") {
|
||||
this.upload_gcode(file_name, file);
|
||||
@@ -441,11 +437,5 @@ module.exports = {
|
||||
}
|
||||
this.deleteSelected = false;
|
||||
},
|
||||
print_config: function () {
|
||||
console.log(this.config);
|
||||
},
|
||||
print_state: function () {
|
||||
console.log(this.state);
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user