mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-05 12:15:14 -05:00
8 lines
241 B
JavaScript
8 lines
241 B
JavaScript
$(document).on('keydown', function(e) {
|
|
if (e.which !== 114 || (!e.ctrlKey && !e.metaKey) || (e.shiftKey || e.altKey))
|
|
return;
|
|
var url = 'reactlog?w=' + exports.shinyapp.config.workerId;
|
|
window.open(url);
|
|
e.preventDefault();
|
|
});
|