diff --git a/adminer/static/functions.js b/adminer/static/functions.js index 197c0581..d8ee552b 100644 --- a/adminer/static/functions.js +++ b/adminer/static/functions.js @@ -377,6 +377,9 @@ function selectDblClick(td, event, text) { * @return bool */ function bodyClick(event, db, ns) { + if (event.button) { + return; + } if (event.getPreventDefault ? event.getPreventDefault() : event.returnValue === false) { return false; }