0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-18 01:22:43 +00:00
This commit is contained in:
Scott Tolksdorf
2018-04-08 22:23:03 -04:00
committed by Trevor Buckner
parent 40f1d4c790
commit c8875cff94
51 changed files with 2837 additions and 2852 deletions

View File

@@ -4,7 +4,7 @@ module.exports = function(shareId){
return function(event){
event = event || window.event;
if((event.ctrlKey || event.metaKey) && event.keyCode == 80){
var win = window.open(`/homebrew/print/${shareId}?dialog=true`, '_blank');
const win = window.open(`/homebrew/print/${shareId}?dialog=true`, '_blank');
win.focus();
event.preventDefault();
}