Skip to content

Commit 07ee12d

Browse files
author
tamat
committed
Merge branch 'master' of https://github.com/jagenjo/litegraph.js
2 parents 528fd96 + c87b1ad commit 07ee12d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ npm-debug.log
44
temp/
55
temp/*
66

7-
# Editor
7+
# Editors
88
/.vscode/*
99
!/.vscode/extensions.json
10+
*.bak
11+
.project

editor/js/defaults.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ LiteGraph.do_add_triggers_slots = true; // [true!] will create and connect event
2828
LiteGraph.allow_multi_output_for_events = false; // [false!] being events; it is strongly reccomended to use them sequentually; one by one
2929
LiteGraph.middle_click_slot_add_default_node = true; //[true!] allows to create and connect a ndoe clicking with the third button (wheel)
3030
LiteGraph.release_link_on_empty_shows_menu = true; //[true!] dragging a link to empty space will open a menu, add from list, search or defaults
31-
LiteGraph.pointerevents_method = "pointer"; // "mouse"|"pointer" use mouse for retrocompatibility issues? (none found @ now)
31+
LiteGraph.pointerevents_method = "mouse"; // "mouse"|"pointer" use mouse for retrocompatibility issues? (none found @ now)

src/litegraph.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136

137137
release_link_on_empty_shows_menu: false, //[true!] dragging a link to empty space will open a menu, add from list, search or defaults
138138

139-
pointerevents_method: "pointer", // "mouse"|"pointer" use mouse for retrocompatibility issues? (none found @ now)
139+
pointerevents_method: "mouse", // "mouse"|"pointer" use mouse for retrocompatibility issues? (none found @ now)
140140
// TODO implement pointercancel, gotpointercapture, lostpointercapture, (pointerover, pointerout if necessary)
141141

142142
/**

0 commit comments

Comments
 (0)