From d1d26565bae3717f3a5f3d874af416e335f5ffd4 Mon Sep 17 00:00:00 2001 From: sanjayk03-dev Date: Mon, 8 Apr 2024 19:38:14 +0530 Subject: [PATCH] removed print funcs --- src/js/macros.js | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/js/macros.js b/src/js/macros.js index 4dc3006..1e70517 100644 --- a/src/js/macros.js +++ b/src/js/macros.js @@ -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); - }, }, };