]> dev.renevier.net Git - syj.git/blobdiff - public/js/account.js
allow anonymous routes creation
[syj.git] / public / js / account.js
index ae4e3ecc213e5645bbddc22aac5a2b8379933864..d479e559b749ae0d2918d58373af3354842604d7 100644 (file)
@@ -11,13 +11,7 @@ document.observe("dom:loaded", function() {
 
         $$('.error').invoke('remove');
 
-        errorElements = $$('#account_email, #account_password').findAll(
-            function(elt) {
-                return (!elt.check(function() {
-                    return !this.value.strip().empty();
-                }, SyjStrings.notEmptyField));
-            });
-
+        errorElements = this.checkEmptyElements(SyjStrings.notEmptyField);
 
         if (!errorElements.length) {
             control = $("account_password");
@@ -50,8 +44,7 @@ document.observe("dom:loaded", function() {
          * if there are errors, cancel submission
          */
         if (errorElements.length) {
-            errorElements[0].highlight('#F08080').focus();
-            errorElements[0].select();
+            errorElements[0].highlight('#F08080').activate();
             evt.stop();
         }
     });