From: Stas Vilchik Date: Wed, 2 Apr 2014 11:15:07 +0000 (+0600) Subject: SONAR-5166 Offer shortcut to access the top-right search engine X-Git-Tag: 4.3~195 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=97cd2a8338ba0eac4a2bfbee1b037b226bc96ebc;p=sonarqube.git SONAR-5166 Offer shortcut to access the top-right search engine Change shortcut to shift+s --- diff --git a/sonar-server/src/main/js/application.js b/sonar-server/src/main/js/application.js index 04e4d7e245e..6f758b1314d 100644 --- a/sonar-server/src/main/js/application.js +++ b/sonar-server/src/main/js/application.js @@ -555,7 +555,7 @@ jQuery(function() { // Define global shortcuts - key('/', function() { + key('shift+s', function() { jQuery('#searchInput').focus(); return false; });