Fix links in error screen
parent
87a7669f29
commit
d2fb68642d
|
@ -1005,6 +1005,16 @@ define([
|
|||
} else {
|
||||
$error.html(error || Messages.error);
|
||||
}
|
||||
$error.find('a[href]').click(function (e) {
|
||||
e.preventDefault();
|
||||
var href = $(this).prop('href');
|
||||
if (!href) { return; }
|
||||
if (e && e.ctrlKey) {
|
||||
window.open('/bounce/#'+encodeURIComponent(href));
|
||||
return;
|
||||
}
|
||||
window.parent.location = href;
|
||||
});
|
||||
if (exitable) {
|
||||
$(window).focus();
|
||||
$(window).keydown(function (e) {
|
||||
|
|
Loading…
Reference in New Issue