Skip to content

Commit 91f3f6c

Browse files
committed
SwingJS-site files
1 parent fdb8d20 commit 91f3f6c

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed
14.7 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20191031090934
1+
20191103054350
14.7 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20191031090934
1+
20191103054350
14.7 KB
Binary file not shown.

sources/net.sf.j2s.java.core/srcjs/swingjs2.js

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10702,10 +10702,13 @@ self.J2S
1070210702

1070310703
try {
1070410704
// will alert in system.out.println with a message when events occur
10705-
J2S._traceEvents = (document.location.href.indexOf("j2sevents") >= 0)
10706-
J2S._traceMouse = (document.location.href.indexOf("j2smouse") >= 0)
10707-
J2S._traceMouseMove = (document.location.href.indexOf("j2smousemove") >= 0)
10708-
J2S._startProfiling = (document.location.href.indexOf("j2sprofile") >= 0)
10705+
J2S._traceEvents = (document.location.href.indexOf("j2sevents") >= 0);
10706+
J2S._traceMouse = (document.location.href.indexOf("j2smouse") >= 0);
10707+
J2S._traceMouseMove = (document.location.href.indexOf("j2smousemove") >= 0);
10708+
J2S._startProfiling = (document.location.href.indexOf("j2sprofile") >= 0);
10709+
if (document.location.href.indexOf("j2snozcore") >= 0)
10710+
J2S._coreZExt = "";
10711+
1070910712
} catch (e) {}
1071010713

1071110714
J2S.onClazzLoaded || (J2S.onClazzLoaded = function(i, msg) {console.log([i,msg])});
@@ -10756,6 +10759,7 @@ if (!J2S._version)
1075610759
_applets : {},
1075710760
_asynchronous : true,
1075810761
_ajaxQueue : [],
10762+
_coreZExt : ".z",
1075910763
_persistentMenu : false,
1076010764
_getZOrders : getZOrders,
1076110765
_z : getZOrders(z),
@@ -12974,7 +12978,7 @@ if (ev.keyCode == 9 && ev.target["data-focuscomponent"]) {
1297412978
__coreSet.push(type);
1297512979
__coreSet.sort();
1297612980
J2S._coreFiles = [ path + "/core/core" + __coreSet.join("")
12977-
+ ".z.js" ];
12981+
+ J2S._coreZExt + ".js" ];
1297812982
}
1297912983
if (more && (more = more.split(" ")))
1298012984
for (var i = 0; i < more.length; i++)
@@ -13583,6 +13587,7 @@ if (ev.keyCode == 9 && ev.target["data-focuscomponent"]) {
1358313587
fDown(xy, 501);
1358413588
} else if (target) {
1358513589
var o = $(target(501)).position();
13590+
if (!o) return false;
1358613591
xy = {
1358713592
x : o.left,
1358813593
y : o.top
@@ -13843,8 +13848,8 @@ window["j2s.clazzloaded"] = true;
1384313848
_debugging: false,
1384413849
_loadcore: true,
1384513850
_nooutput: 0,
13846-
_VERSION_R: "3.2.4.07", //runtime
13847-
_VERSION_T: "3.2.4.07", //transpiler
13851+
_VERSION_R: "3.2.4.09", //runtime
13852+
_VERSION_T: "3.2.4.09", //transpiler
1384813853
};
1384913854

1385013855
;(function(Clazz, J2S) {

0 commit comments

Comments
 (0)