Removing space key from popping up tooltip (#166)
This commit is contained in:
Родитель
30b5ef1c96
Коммит
5c9d517bfe
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "azdataGraph",
|
||||
"version": "0.0.57",
|
||||
"version": "0.0.58",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "azdataGraph",
|
||||
"version": "0.0.57",
|
||||
"version": "0.0.58",
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"grunt": "^1.5.3",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "azdataGraph",
|
||||
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
|
||||
"version": "0.0.57",
|
||||
"version": "0.0.58",
|
||||
"homepage": "https://github.com/microsoft/azdataGraph",
|
||||
"author": "Microsoft",
|
||||
"license": "Apache-2.0",
|
||||
|
|
|
@ -459,7 +459,7 @@ azdataQueryPlan.prototype.init = function (queryPlanConfiguration) {
|
|||
|
||||
mxEvent.addListener(cellBodyContainer, 'keydown', (evt) => {
|
||||
if (this.showTooltipOnClick && this.showTooltip) {
|
||||
if (evt.keyCode === 13 || evt.keyCode === 32) {
|
||||
if (evt.keyCode === 13) {
|
||||
if (this.tooltipHandler.isVisible) {
|
||||
this.tooltipHandler.hide();
|
||||
} else {
|
||||
|
|
Загрузка…
Ссылка в новой задаче