Skip to content

Commit 7352ef6

Browse files
committed
minor upgrades
j2sApplet fix for pointerup,pointerdown j2sMenu adds pointerup/down CSVParser in test
1 parent afdeb6c commit 7352ef6

File tree

13 files changed

+338
-232
lines changed

13 files changed

+338
-232
lines changed
Binary file not shown.

sources/net.sf.j2s.core/dist/swingjs/differences.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
java2script/SwingJS Notes
22
=========================
33

4+
updated 3/11/2023 -- adds support for Java Regex Matcher.start/end(groupID) and .start/end(groupName)
45
updated 12/31/2020 -- full support for 64-bit long
56
updated 12/6/2020 -- note about restrictions on long, including BitSet and Scanner
67
updated 3/21/2020 -- adds note about HashMap, Hashtable, and HashSet iterator ordering
Binary file not shown.
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
<<<<<<< HEAD
2-
20230329174944
3-
=======
4-
20230329170441
5-
>>>>>>> branch 'hanson1' of https://github.com/BobHanson/java2script
1+
20230522181019
Binary file not shown.

sources/net.sf.j2s.core/dist/swingjs/ver/3.3.1/differences.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
java2script/SwingJS Notes
22
=========================
33

4+
updated 3/11/2023 -- adds support for Java Regex Matcher.start/end(groupID) and .start/end(groupName)
45
updated 12/31/2020 -- full support for 64-bit long
56
updated 12/6/2020 -- note about restrictions on long, including BitSet and Scanner
67
updated 3/21/2020 -- adds note about HashMap, Hashtable, and HashSet iterator ordering
Binary file not shown.
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
<<<<<<< HEAD
2-
20230329174944
3-
=======
4-
20230329170441
5-
>>>>>>> branch 'hanson1' of https://github.com/BobHanson/java2script
1+
20230522181019
Binary file not shown.

sources/net.sf.j2s.java.core/src/swingjs/jquery/j2sMenu.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,8 @@ $.widget("ui.j2smenu",{
413413
this._on({
414414
"click .ui-state-disabled > .a": function(t){ t.preventDefault() },
415415
"click .ui-j2smenu-item:has(.a)": function(t){ doCmd("onclick",this,t);},
416+
"pointerdown .ui-j2smenu-item > .a": function(t){ doCmd("onpress",this,t) },
417+
"pointerup .ui-j2smenu-item > .a": function(t){ doCmd("onrelease",this,t) },
416418
"mousedown .ui-j2smenu-item > .a": function(t){ doCmd("onpress",this,t) },
417419
"mouseup .ui-j2smenu-item > .a": function(t){ doCmd("onrelease",this,t) },
418420
"mousemove .swingjsPopupMenu ": function(t){ doCmd("onmovep",this,t,0); },

0 commit comments

Comments
 (0)