history.pushState(data, '', url); //! remember window position
}
}
- if (!noscroll) {
+ if (!noscroll && !/&order/.test(url)) {
scrollTo(0, 0);
}
setHtml('content', xmlhttp.responseText);
params.push(data);
}
if (form.method == 'post') {
- return ajaxSend((/\?/.test(form.action) ? form.action : location.href), params.join('&'), noscroll); // ? - always part of Adminer URL
+ return ajaxSend((/\?/.test(form.action) ? form.action : location.href), params.join('&'), false, noscroll); // ? - always part of Adminer URL
}
- return ajaxSend((form.action || location.href).replace(/\?.*/, '') + '?' + params.join('&'), noscroll);
+ return ajaxSend((form.action || location.href).replace(/\?.*/, '') + '?' + params.join('&'), '', false, noscroll);
}
+Adminer 3.3.2-dev:
+Don't scroll with AJAX select order and alter move column
+
Adminer 3.3.1 (released 2011-07-27):
Fix XSS introduced in Adminer 3.2.0
Fix altering default values (PostgreSQL)