mirror of
https://github.com/vrana/adminer.git
synced 2025-08-09 08:06:59 +02:00
Don't check row while selecting text
This commit is contained in:
@@ -103,7 +103,7 @@ function formChecked(el, name) {
|
|||||||
* @param MouseEvent
|
* @param MouseEvent
|
||||||
*/
|
*/
|
||||||
function tableClick(event) {
|
function tableClick(event) {
|
||||||
var click = true;
|
var click = (!window.getSelection || getSelection().isCollapsed);
|
||||||
var el = event.target || event.srcElement;
|
var el = event.target || event.srcElement;
|
||||||
while (!/^tr$/i.test(el.tagName)) {
|
while (!/^tr$/i.test(el.tagName)) {
|
||||||
if (/^table$/i.test(el.tagName)) {
|
if (/^table$/i.test(el.tagName)) {
|
||||||
|
@@ -8,6 +8,7 @@ Error message with no response from server in AJAX
|
|||||||
Esc to cancel AJAX request
|
Esc to cancel AJAX request
|
||||||
Move AJAX loading indicator to the right
|
Move AJAX loading indicator to the right
|
||||||
Don't quote bit type in export
|
Don't quote bit type in export
|
||||||
|
Don't check row while selecting text
|
||||||
Ability to disable export (customization)
|
Ability to disable export (customization)
|
||||||
Extensible list of databases (customization)
|
Extensible list of databases (customization)
|
||||||
MySQL: set autocommit after connect
|
MySQL: set autocommit after connect
|
||||||
|
Reference in New Issue
Block a user