mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-29 03:00:45 -04:00
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
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();
|
|
});
|
|
|
|
|
|
$(document).on('keydown', function(e) {
|
|
if (
|
|
// if not one of the key combos below
|
|
!(
|
|
// cmd/ctrl + fn + f4
|
|
(e.which === 115 && (e.ctrlKey || e.metaKey) && !e.shiftKey && !e.altKey) ||
|
|
// cmd/ctrl + shift + fn + f3
|
|
(e.which === 114 && (e.ctrlKey || e.metaKey) && e.shiftKey && !e.altKey)
|
|
)
|
|
) {
|
|
return;
|
|
}
|
|
|
|
var url = 'reactlog/mark?w=' + window.escape(exports.shinyapp.config.workerId) +
|
|
"&s=" + window.escape(exports.shinyapp.config.sessionId);
|
|
|
|
// send notification
|
|
$.get(url, function(result) {
|
|
if (result !== "marked") return;
|
|
|
|
var html = '<span id="shiny-reactlog-mark-text">Marked time point in reactlog</span>';
|
|
|
|
exports.notifications.show({
|
|
html: html,
|
|
closeButton: true,
|
|
});
|
|
}).fail(function() {
|
|
// found returned error while marking, should open webpage
|
|
window.open(url);
|
|
});
|
|
|
|
e.preventDefault();
|
|
});
|