瀏覽代碼

#656 Ctrl + Enter to open search result in new tab

Rudie Dirkx 9 年之前
父節點
當前提交
44e67d9279
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7 1
      src/Packagist/WebBundle/Resources/public/js/search.js

+ 7 - 1
src/Packagist/WebBundle/Resources/public/js/search.js

@@ -129,7 +129,13 @@
         }
 
         if (keymap.enter === event.which && currentSelected.data('url')) {
-            window.location = currentSelected.data('url');
+            var url = currentSelected.data('url');
+            if (event.ctrlKey) {
+                window.open(url);
+                return;
+            }
+
+            window.location = url;
             return;
         }