<?php } ?>
<?php } ?>
-<body class="<?php echo lang('ltr'); ?> nojs" onkeydown="bodyKeydown(event);" onload="bodyLoad('<?php echo (is_object($connection) ? substr($connection->server_info, 0, 3) : ""); ?>');<?php echo (isset($_COOKIE["adminer_version"]) ? "" : " verifyVersion();"); ?>">
+<body class="<?php echo lang('ltr'); ?> nojs" onkeydown="bodyKeydown(event);" onclick="bodyClick(event);" onload="bodyLoad('<?php echo (is_object($connection) ? substr($connection->server_info, 0, 3) : ""); ?>');<?php echo (isset($_COOKIE["adminer_version"]) ? "" : " verifyVersion();"); ?>">
<script type="text/javascript">
document.body.className = document.body.className.replace(/ nojs/, ' js');
</script>
return true;
}
+/** Open form to a new window on Ctrl+click or Shift+click
+* @param MouseEvent
+*/
+function bodyClick(event) {
+ var target = event.target || event.srcElement;
+ if ((event.ctrlKey || event.shiftKey) && target.type == 'submit' && /input/i.test(target.tagName)) {
+ target.form.target = '_blank';
+ setTimeout(function () {
+ // if (event.ctrlKey) { focus(); } doesn't work
+ target.form.target = '';
+ }, 0);
+ }
+}
+
/** Change focus by Ctrl+Up or Ctrl+Down
Time out long running database list and select count
Use VALUES() in INSERT+UPDATE export
Style logout button as link
+Ctrl+click and Shift+click on button opens form to a blank window
selectQueryBuild() method (customization)
Serbian translation