diff --git a/src/main/twirl/repo/blob.scala.html b/src/main/twirl/repo/blob.scala.html
index a90f5bc0e..81518aa9c 100644
--- a/src/main/twirl/repo/blob.scala.html
+++ b/src/main/twirl/repo/blob.scala.html
@@ -100,7 +100,7 @@ $(window).load(function(){
$('div.source-line-num').click(function(e){
var line = $(e.target).data('line');
var hash = location.hash;
- if(e.ctrlKey == true && hash.match(/#L\d+(-L\d+)?/)){
+ if(e.shiftKey == true && hash.match(/#L\d+(-L\d+)?/)){
var lines = hash.split('-');
location.hash = lines[0] + '-L' + line;
} else {