You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by rj...@apache.org on 2013/07/08 03:57:20 UTC

svn commit: r1500567 - /bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_login.html

Author: rjollos
Date: Mon Jul  8 01:57:20 2013
New Revision: 1500567

URL: http://svn.apache.org/r1500567
Log:
Removed unnecessary array indexing in jQuery expression, and fixed indentation.

Modified:
    bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_login.html

Modified: bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_login.html
URL: http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_login.html?rev=1500567&r1=1500566&r2=1500567&view=diff
==============================================================================
--- bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_login.html (original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_login.html Mon Jul  8 01:57:20 2013
@@ -32,10 +32,10 @@
   <head>
     <title>Login</title>
     <script type="text/javascript">
-    jQuery(document).ready(function($) {
+      jQuery(document).ready(function($) {
         $("body").addClass("login");
-        $('#user')[0].focus();
-    });
+        $('#user').focus();
+      });
     </script>
   </head>