Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js/sql.js
diff options
context:
space:
mode:
authorAtul Pratap Singh <atulpratapsingh05@gmail.com>2015-07-09 14:15:52 +0300
committerAtul Pratap Singh <atulpratapsingh05@gmail.com>2015-07-09 14:15:52 +0300
commit30311537466ca57b5b2576c2adc7f5dc28a6fc33 (patch)
tree9c9f2790e599627c22b526481d6824821863d826 /js/sql.js
parent563b3b709d75f5d5b034d644fcec512a562c7f1f (diff)
Fix non-html5 microhistory behavior
Signed-off-by: Atul Pratap Singh <atulpratapsingh05@gmail.com>
Diffstat (limited to 'js/sql.js')
-rw-r--r--js/sql.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/sql.js b/js/sql.js
index 8b01380076..e521709d21 100644
--- a/js/sql.js
+++ b/js/sql.js
@@ -390,7 +390,7 @@ AJAX.registerOnload('sql.js', function () {
if (data._menu) {
if (history && history.pushState) {
history.replaceState({
- menu : data._menu
+ menu : data._menu
},
null
);
@@ -399,7 +399,7 @@ AJAX.registerOnload('sql.js', function () {
PMA_Microhistory.menus.replace(data._menu);
PMA_Microhistory.menus.add(data._menuHash, data._menu);
}
- } else if (data._menuHash) {debugger;
+ } else if (data._menuHash) {
if (! (history && history.pushState)) {
PMA_Microhistory.menus.replace(PMA_Microhistory.menus.get(data._menuHash));
}