We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6347611 + 96663fa commit 6936bfcCopy full SHA for 6936bfc
1 file changed
script.js
@@ -211,7 +211,13 @@ jQuery(function(){ // on page load
211
}
212
213
if(node.data.url){
214
- window.location.href = node.data.url;
+ if (e.ctrlKey || e.metaKey) {
215
+ e.stopPropagation();
216
+ e.preventDefault();
217
+ window.open(node.data.url);
218
+ } else {
219
+ window.location.href = node.data.url;
220
+ }
221
222
},
223
0 commit comments