minor bug fix
safety check to replace prompt to stop unsightly error if user backs out
This commit is contained in:
parent
84473c767d
commit
57405dffbb
|
|
@ -37987,6 +37987,7 @@ Make sure to save your command in a file if you want to add this preset again.`
|
||||||
function replaceElementPrompt() {
|
function replaceElementPrompt() {
|
||||||
var fromElement = prompt("Enter the element you want to change");
|
var fromElement = prompt("Enter the element you want to change");
|
||||||
// replace spaces with underscores
|
// replace spaces with underscores
|
||||||
|
if(fromElement == null) { return };
|
||||||
fromElement = fromElement.replace(/ /g, "_");
|
fromElement = fromElement.replace(/ /g, "_");
|
||||||
fromElementS = mostSimilarElement(fromElement);
|
fromElementS = mostSimilarElement(fromElement);
|
||||||
if (fromElementS === null || fromElementS === undefined || fromElementS === "") {
|
if (fromElementS === null || fromElementS === undefined || fromElementS === "") {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue