]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2084 focus on the clear text input when loading the administration console
authorSimon Brandhof <simon.brandhof@gmail.com>
Tue, 20 Mar 2012 14:21:44 +0000 (15:21 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Tue, 20 Mar 2012 14:48:23 +0000 (15:48 +0100)
sonar-server/src/main/webapp/WEB-INF/app/views/encryption_configuration/index.html.erb

index 636f0664385d13af772599ca2ba2c1ed77b66d03..b5d6c4fad0425152e5fa3a181a348963000239bc 100644 (file)
@@ -1,14 +1,17 @@
 <p class="spacer-bottom">Secret key is registered. You can encrypt any property value with the following form :</p>
 
 <%= form_remote_tag :url => {:action => 'encrypt'},
-                    :update => {:success => 'encryption_result', :failure => 'encryption_error'},
-                    :success => "$('encryption_result').show()",
+                    :update => {:success => 'encrypted_text', :failure => 'encryption_error'},
+                    :success => "$('encrypted_text').show()",
                     :failure => "$('encryption_error').show()",
                     :html => {:class => 'spacer-bottom'} -%>
-<input type="text" name="text" id="text"/>
+<input type="text" name="text" id="clear_text"/>
 <input type="submit" value="Encrypt" id="submit_encrypt"/>
-<span id="encryption_result" class="notice" style="display:none"></span>
+<span id="encrypted_text" class="notice" style="display:none"></span>
 <span id="encryption_error" class="error" style="display:none"></span>
 </form>
 <p>Note that the <%= link_to 'secret key can be changed', {:action => 'generate_secret_form'}, :class => 'link-action' -%>
-  but all the encrypted properties will have to be updated.</p>
\ No newline at end of file
+  but all the encrypted properties will have to be updated.</p>
+<script>
+  $('clear_text').focus();
+</script>
\ No newline at end of file