1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-14 02:23:59 +02:00

Fix AJAX history after reload

This commit is contained in:
Jakub Vrana
2011-03-24 08:24:57 +01:00
parent 5ee14079b8
commit fa832055c8
4 changed files with 11 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
// Editor specific functions
function bodyLoad(version) {
onpopstate(history);
if (history.state !== undefined) {
onpopstate(history);
}
}