* Fix scrolling on error page
This commit is contained in:
parent
740b51e0bc
commit
88ad99d497
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -169,10 +169,14 @@
|
|||
$(".page").hide();
|
||||
$("#stackpage").show();
|
||||
|
||||
$("#rawExceptionButton").click(function () {
|
||||
$("#rawExceptionButton").click(function (event) {
|
||||
var div = document.getElementById('rawException');
|
||||
div.style.display = 'inline-block';
|
||||
div.scrollIntoView(true);
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
$(".frame")
|
||||
|
|
|
|||
Loading…
Reference in New Issue