Skip to content

Commit 661f7ab

Browse files
Release v0.0.115
1 parent 471c632 commit 661f7ab

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

dist/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48693,15 +48693,15 @@ var SchemaDesigner = class {
4869348693
* Zoom in the schema designer
4869448694
*/
4869548695
zoomIn() {
48696-
this.mxEditor.execute("zoomOut");
48696+
this.mxEditor.execute("zoomIn");
4869748697
this.redrawEdges();
4869848698
this.updateEditorPosition();
4869948699
}
4870048700
/**
4870148701
* Zoom out the schema designer
4870248702
*/
4870348703
zoomOut() {
48704-
this.mxEditor.execute("zoomIn");
48704+
this.mxEditor.execute("zoomOut");
4870548705
this.redrawEdges();
4870648706
this.updateEditorPosition();
4870748707
}

dist/index.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/ts/schemaDesigner/schemaDesigner.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -519,15 +519,15 @@ class SchemaDesigner {
519519
* Zoom in the schema designer
520520
*/
521521
zoomIn() {
522-
this.mxEditor.execute("zoomOut");
522+
this.mxEditor.execute("zoomIn");
523523
this.redrawEdges();
524524
this.updateEditorPosition();
525525
}
526526
/**
527527
* Zoom out the schema designer
528528
*/
529529
zoomOut() {
530-
this.mxEditor.execute("zoomIn");
530+
this.mxEditor.execute("zoomOut");
531531
this.redrawEdges();
532532
this.updateEditorPosition();
533533
}

dist/tsconfig.tsbuildinfo

+1-1
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "azdataGraph",
33
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
4-
"version": "0.0.114",
4+
"version": "0.0.115",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",

src/ts/schemaDesigner/schemaDesigner.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ export class SchemaDesigner {
604604
* Zoom in the schema designer
605605
*/
606606
public zoomIn() {
607-
this.mxEditor.execute("zoomOut");
607+
this.mxEditor.execute("zoomIn");
608608
this.redrawEdges();
609609
this.updateEditorPosition();
610610
}
@@ -613,7 +613,7 @@ export class SchemaDesigner {
613613
* Zoom out the schema designer
614614
*/
615615
public zoomOut() {
616-
this.mxEditor.execute("zoomIn");
616+
this.mxEditor.execute("zoomOut");
617617
this.redrawEdges();
618618
this.updateEditorPosition();
619619
}

0 commit comments

Comments
 (0)