From 12a3975341978566e4447a0abaa049010e371247 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 7 Feb 2015 00:46:14 -0800 Subject: [PATCH] Close section tag, add String.prototype.lineCount --- Marlin/configurator/index.html | 2 +- Marlin/configurator/js/configurator.js | 22 +++++++--------------- 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/Marlin/configurator/index.html b/Marlin/configurator/index.html index e52c163f5a..279f07e98f 100644 --- a/Marlin/configurator/index.html +++ b/Marlin/configurator/index.html @@ -73,6 +73,6 @@
-
+
diff --git a/Marlin/configurator/js/configurator.js b/Marlin/configurator/js/configurator.js index 25f8a7ed95..e761aecf96 100644 --- a/Marlin/configurator/js/configurator.js +++ b/Marlin/configurator/js/configurator.js @@ -25,18 +25,10 @@ String.prototype.lpad = function(len, chr) { if (need > 0) { s = new Array(need+1).join(chr) + s; } return s; }; - -String.prototype.prePad = function(len, chr) { - return len ? this.lpad(len, chr) : this; -}; - -String.prototype.zeroPad = function(len) { - return len ? this.prePad(len, '0') : this; -}; - -String.prototype.regEsc = function() { - return this.replace(/[.?*+^$[\]\\(){}|-]/g, "\\$&"); -} +String.prototype.prePad = function(len, chr) { return len ? this.lpad(len, chr) : this; }; +String.prototype.zeroPad = function(len) { return this.prePad(len, '0'); }; +String.prototype.regEsc = function() { return this.replace(/[.?*+^$[\]\\(){}|-]/g, "\\$&"); } +String.prototype.lineCount = function() { return this.split(/\r?\n|\r/).length; }; /** * selectField.addOptions takes an array or keyed object @@ -226,7 +218,7 @@ var configuratorApp = (function(){ case config_file: if (has_boards) { $config.text(txt); - total_config_lines = txt.split(/\r?\n|\r/).length; + total_config_lines = txt.lineCount(); this.initThermistorsFromText(txt); this.purgeDefineInfo(false); this.refreshConfigForm(); @@ -240,7 +232,7 @@ var configuratorApp = (function(){ case config_adv_file: if (has_config) { $config_adv.text(txt); - total_config_adv_lines = txt.split(/\r?\n|\r/).length; + total_config_adv_lines = txt.lineCount(); this.purgeDefineInfo(true); this.refreshConfigForm(); this.setMessage(config_adv_file+' loaded successfully.'); @@ -635,7 +627,7 @@ var configuratorApp = (function(){ */ getLineInText: function(line, txt) { var pos = txt.indexOf(line); - return (pos < 0) ? pos : txt.substr(0, pos).replace(/[^\n]+/g, '').length; + return (pos < 0) ? pos : txt.substr(0, pos).lineCount(); }, log: function(o,l) {