From 9f26648340863c360fa5e503b85afcf10211c6e5 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Thu, 19 Jan 2017 14:19:11 +0530 Subject: [PATCH 01/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49ee820..c8edbd8 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ It has automated listener to eliminating unnecessary changes on form. //For Simple Required - // Value '0' is used to represent empty. + // Value '-' is used to represent empty. From c7aefea503a3b6c9231efa5508596f9b691716b3 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Thu, 13 Apr 2017 14:37:28 +0530 Subject: [PATCH 04/15] Update formValidator.js --- src/js/formValidator.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/js/formValidator.js b/src/js/formValidator.js index 25385a2..b27b43e 100644 --- a/src/js/formValidator.js +++ b/src/js/formValidator.js @@ -7,10 +7,15 @@ var form = { // TODO: Simplify the "TextArea" Validation. validate: function (form) { + // For Basic Element Selection. var form_el = document.getElementById(form); + // For Normal Textboxes. var st_form_inputs = form_el.getElementsByTagName('input'); + // For Textareas. var st_form_textArea = form_el.getElementsByTagName('textarea'); + // For Select or Drop Down Box. var st_form_select = form_el.getElementsByTagName('select'); + // For Labels. var st_form_labels = form_el.getElementsByTagName('label'); console.log(st_form_inputs); From 175d32d1da3001324fe30e6e44dcb34110dab629 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Tue, 25 Apr 2017 12:28:52 +0530 Subject: [PATCH 05/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 95c0a7a..4eb0042 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ So **No Need** to use ```` display: inline !important; } -###License +### License MIT License From 47bee31b48e3e9d4707d8e931546b2ee18f07956 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Tue, 25 Apr 2017 12:30:45 +0530 Subject: [PATCH 06/15] Update README.md --- README.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4eb0042..7d110a5 100644 --- a/README.md +++ b/README.md @@ -16,16 +16,20 @@ Then Integrate your form with Validator. @@ -44,7 +48,7 @@ It has automated listener to eliminating unnecessary changes on form. 2. Input Fields should specify the type of validation. - //***************For General Input Validation************************************** + ////////////////////For General Input Validation//////////////////////////////////////// // For Simple Require. @@ -61,7 +65,7 @@ It has automated listener to eliminating unnecessary changes on form. // For Password Match Validation. - //***************For Select Validation******************************************* + ////////////////////For Select Validation//////////////////////////////////////////// //For Simple Required - //***************For Textarea Validation******************************************* + ////////////////////For Textarea Validation////////////////////////////////////////// // For Simple Required From 52c87b3c74e95e336d8ec3723b06ce832bf06fc7 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:45:37 +0530 Subject: [PATCH 07/15] Delete watcherTasks.xml --- .idea/watcherTasks.xml | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 .idea/watcherTasks.xml diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml deleted file mode 100644 index 9338ba6..0000000 --- a/.idea/watcherTasks.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file From 0f5a23c6d398574bcfd4f147cb2acc3a19c8bc90 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:45:47 +0530 Subject: [PATCH 08/15] Delete vcs.xml --- .idea/vcs.xml | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .idea/vcs.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From 6416e97a2bbd9f36a992ea1a809446188e61fb3d Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:45:55 +0530 Subject: [PATCH 09/15] Delete modules.xml --- .idea/modules.xml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .idea/modules.xml diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index c82afdc..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file From 0f655782af13916bc9d1fd0d0c2c0a39c3a81e8b Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:46:08 +0530 Subject: [PATCH 10/15] Delete misc.xml --- .idea/misc.xml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .idea/misc.xml diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index eabe228..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file From c6e889e0cdfc8b430d3cea09927587082c82bb1a Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:46:18 +0530 Subject: [PATCH 11/15] Delete jsLibraryMappings.xml --- .idea/jsLibraryMappings.xml | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .idea/jsLibraryMappings.xml diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml deleted file mode 100644 index b8387eb..0000000 --- a/.idea/jsLibraryMappings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From 9cb0dd1ed9dfbec709b6c00af09fe1876782cf06 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:46:27 +0530 Subject: [PATCH 12/15] Delete encodings.xml --- .idea/encodings.xml | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .idea/encodings.xml diff --git a/.idea/encodings.xml b/.idea/encodings.xml deleted file mode 100644 index 97626ba..0000000 --- a/.idea/encodings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From 9ae30700cd93548fed6ca961c871fc6f6ffbf386 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:46:35 +0530 Subject: [PATCH 13/15] Delete JavascriptFormValidator.iml --- .idea/JavascriptFormValidator.iml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .idea/JavascriptFormValidator.iml diff --git a/.idea/JavascriptFormValidator.iml b/.idea/JavascriptFormValidator.iml deleted file mode 100644 index c956989..0000000 --- a/.idea/JavascriptFormValidator.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file From 407897cb26dcf179256daa7c9b51b4ad1a7fa6af Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:46:43 +0530 Subject: [PATCH 14/15] Delete .name --- .idea/.name | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .idea/.name diff --git a/.idea/.name b/.idea/.name deleted file mode 100644 index f250442..0000000 --- a/.idea/.name +++ /dev/null @@ -1 +0,0 @@ -JavascriptFormValidator \ No newline at end of file From 7ac44baf2ee4271f5f5f84208aeb7d6f1b88c894 Mon Sep 17 00:00:00 2001 From: Shankar Thiyagaraajan Date: Mon, 1 May 2017 08:47:02 +0530 Subject: [PATCH 15/15] Delete profiles_settings.xml --- .idea/copyright/profiles_settings.xml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .idea/copyright/profiles_settings.xml diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml deleted file mode 100644 index e7bedf3..0000000 --- a/.idea/copyright/profiles_settings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file