mirror of
https://github.com/vrana/adminer.git
synced 2026-03-04 11:31:34 +01:00
Don't add the same page to history in AJAX
This commit is contained in:
@@ -301,7 +301,9 @@ function ajaxSend(url, data, popState) {
|
||||
setHtml('loader', '');
|
||||
} else {
|
||||
if (!popState) {
|
||||
history.pushState(data, '', url);
|
||||
if (data || url != location.href) {
|
||||
history.pushState(data, '', url);
|
||||
}
|
||||
scrollTo(0, 0);
|
||||
}
|
||||
setHtml('content', text);
|
||||
|
||||
Reference in New Issue
Block a user