added free session memory button.

This commit is contained in:
2021-02-20 03:24:24 -06:00
parent e2014e25e7
commit 5adf3cbb66
4 changed files with 39 additions and 10 deletions

View File

@@ -1,6 +1,5 @@
const message2 = "Name too long or none provided; or, unacceptable character used.";
const regexp = /^[a-zA-Z0-9-_]+$/; // Alphanumeric, dash, underscore
let data = null;
@@ -18,7 +17,6 @@ const processor = () => {
if (enteryName.length < 0 || enteryName.length > 54 || enteryName.search(regexp) == -1) {
messageWindow("danger", message2, "modal-gutter");
// prePprocessor(obj, "", message2);
return ;
}