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

Support Shift+click in server export

This commit is contained in:
Jakub Vrana
2018-02-08 09:47:15 +01:00
parent 6e2f681faa
commit fb2d34f739
2 changed files with 16 additions and 2 deletions

View File

@@ -404,6 +404,19 @@ function partitionNameChange() {
/** Uncheck 'all' checkbox
* @param MouseEvent
* @this HTMLTableElement
*/
function dumpClick(event) {
var el = parentTag(getTarget(event), 'label');
if (el) {
checkboxClick.call(el.firstChild, event);
}
}
/** Add row for foreign key
* @this HTMLSelectElement
*/