mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-12 16:38:06 -05:00
10 lines
320 B
JavaScript
10 lines
320 B
JavaScript
$(document).on('keydown', function(e) {
|
|
if (e.which !== 114 || (!e.ctrlKey && !e.metaKey) || (e.shiftKey || e.altKey))
|
|
return;
|
|
var url = 'reactlog?w=' + window.escape(exports.shinyapp.config.workerId) +
|
|
"&s=" + window.escape(exports.shinyapp.config.sessionId);
|
|
window.open(url);
|
|
e.preventDefault();
|
|
});
|
|
|